Files
opencloud/store/cmd/store/main.go
T
2021-03-04 14:03:06 +01:00

15 lines
211 B
Go

package main
import (
"os"
"github.com/owncloud/ocis/store/pkg/command"
"github.com/owncloud/ocis/store/pkg/config"
)
func main() {
if err := command.Execute(config.New()); err != nil {
os.Exit(1)
}
}