15 lines
215 B
Go
15 lines
215 B
Go
package main
|
|
|
|
import (
|
|
"os"
|
|
|
|
"github.com/owncloud/ocis/storage/pkg/command"
|
|
"github.com/owncloud/ocis/storage/pkg/config"
|
|
)
|
|
|
|
func main() {
|
|
if err := command.Execute(config.New()); err != nil {
|
|
os.Exit(1)
|
|
}
|
|
}
|