Files
webdav/cmd/cmd.go
T
2019-05-12 19:40:58 +01:00

12 lines
147 B
Go

package cmd
import (
"log"
)
// Execute executes the commands.
func Execute() {
if err := rootCmd.Execute(); err != nil {
log.Fatal(err)
}
}