create extension from template

This commit is contained in:
David Christofas
2020-03-03 15:12:16 +01:00
parent 3f7d62de0e
commit 883778d883
40 changed files with 3776 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
package main
import (
"os"
"github.com/owncloud/ocis-thumbnails/pkg/command"
)
func main() {
if err := command.Execute(); err != nil {
os.Exit(1)
}
}