Initial boilerplate from boilr-ocis-extension.

This commit is contained in:
Benedikt Kulmann
2020-04-07 15:06:08 +02:00
parent 6fdbbd7e8e
commit a8af03c338
43 changed files with 3481 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
package main
import (
"os"
"github.com/owncloud/ocis-settings/pkg/command"
)
func main() {
if err := command.Execute(); err != nil {
os.Exit(1)
}
}