ferry/cmd/cobra.go
2020-09-01 18:08:59 +08:00

43 lines
865 B
Go
Raw Permalink Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

package cmd
import (
"errors"
"ferry/cmd/api"
"ferry/cmd/migrate"
"ferry/pkg/logger"
"os"
"github.com/spf13/cobra"
)
var rootCmd = &cobra.Command{
Use: "ferry",
Short: "-v",
SilenceUsage: true,
DisableAutoGenTag: true,
Long: `ferry`,
Args: func(cmd *cobra.Command, args []string) error {
if len(args) < 1 {
return errors.New("requires at least one arg")
}
return nil
},
PersistentPreRunE: func(*cobra.Command, []string) error { return nil },
Run: func(cmd *cobra.Command, args []string) {
usageStr := `欢迎使用 ferry可以使用 -h 查看命令`
logger.Infof("%s\n", usageStr)
},
}
func init() {
rootCmd.AddCommand(api.StartCmd)
rootCmd.AddCommand(migrate.StartCmd)
}
//Execute : apply commands
func Execute() {
if err := rootCmd.Execute(); err != nil {
os.Exit(-1)
}
}