filebrowser/cmd/cmd.go
Henrique Dias 4744dc3f75 feat: new user api and quick setup
License: MIT
Signed-off-by: Henrique Dias <hacdias@gmail.com>
2018-12-31 16:03:36 +00:00

15 lines
169 B
Go

package cmd
import (
"fmt"
"os"
)
// Execute executes the commands.
func Execute() {
if err := rootCmd.Execute(); err != nil {
fmt.Println(err)
os.Exit(1)
}
}