add thumbnails

This commit is contained in:
A.Unger
2021-03-04 14:08:44 +01:00
parent 3c770dd118
commit 96521d23a9
5 changed files with 50 additions and 18 deletions
+2 -1
View File
@@ -4,10 +4,11 @@ import (
"os"
"github.com/owncloud/ocis/thumbnails/pkg/command"
"github.com/owncloud/ocis/thumbnails/pkg/config"
)
func main() {
if err := command.Execute(); err != nil {
if err := command.Execute(config.New()); err != nil {
os.Exit(1)
}
}