Fix tests

This commit is contained in:
Christian Richter
2022-03-10 15:35:44 +01:00
parent 59eaf7c1b8
commit 3a34e64dde
13 changed files with 30 additions and 30 deletions

View File

@@ -4,11 +4,11 @@ import (
"os"
"github.com/owncloud/ocis/thumbnails/pkg/command"
"github.com/owncloud/ocis/thumbnails/pkg/config"
"github.com/owncloud/ocis/thumbnails/pkg/config/defaults"
)
func main() {
if err := command.Execute(config.DefaultConfig()); err != nil {
if err := command.Execute(defaults.DefaultConfig()); err != nil {
os.Exit(1)
}
}