mirror of
https://github.com/opencloud-eu/opencloud.git
synced 2026-01-02 02:11:18 -06:00
14 lines
154 B
Go
14 lines
154 B
Go
package main
|
|
|
|
import (
|
|
"os"
|
|
|
|
"github.com/owncloud/ocis/proxy/pkg/command"
|
|
)
|
|
|
|
func main() {
|
|
if err := command.Execute(); err != nil {
|
|
os.Exit(1)
|
|
}
|
|
}
|