mirror of
https://github.com/hacdias/webdav.git
synced 2025-04-18 15:44:00 +03:00
13 lines
148 B
Go
13 lines
148 B
Go
package cmd
|
|
|
|
import (
|
|
"log"
|
|
)
|
|
|
|
// Execute executes the commands.
|
|
func Execute() {
|
|
if err := rootCmd.Execute(); err != nil {
|
|
log.Fatal(err)
|
|
}
|
|
}
|