mirror of
https://github.com/opencloud-eu/opencloud.git
synced 2025-12-31 01:10:20 -06:00
14 lines
155 B
Go
14 lines
155 B
Go
package main
|
|
|
|
import (
|
|
"os"
|
|
|
|
"github.com/owncloud/ocis/webdav/pkg/command"
|
|
)
|
|
|
|
func main() {
|
|
if err := command.Execute(); err != nil {
|
|
os.Exit(1)
|
|
}
|
|
}
|