Rename service package to command

This commit is contained in:
Thomas Boerger
2019-09-04 10:18:30 +02:00
parent 07a356c649
commit 66facde60a
5 changed files with 14 additions and 14 deletions
+2 -2
View File
@@ -3,11 +3,11 @@ package main
import (
"os"
"github.com/owncloud/reva-phoenix/pkg/service"
"github.com/owncloud/reva-phoenix/pkg/command"
)
func main() {
if err := service.RootCommand().Execute(); err != nil {
if err := command.Root().Execute(); err != nil {
os.Exit(1)
}
}