mirror of
https://github.com/opencloud-eu/opencloud.git
synced 2026-01-19 03:20:49 -05:00
15 lines
207 B
Go
15 lines
207 B
Go
package main
|
|
|
|
import (
|
|
"os"
|
|
|
|
"github.com/owncloud/ocis/web/pkg/command"
|
|
"github.com/owncloud/ocis/web/pkg/config"
|
|
)
|
|
|
|
func main() {
|
|
if err := command.Execute(config.New()); err != nil {
|
|
os.Exit(1)
|
|
}
|
|
}
|