43 lines
877 B
Go
43 lines
877 B
Go
![]() |
package cmd
|
|||
|
|
|||
|
import (
|
|||
|
"errors"
|
|||
|
"ferry/cmd/api"
|
|||
|
"ferry/cmd/migrate"
|
|||
|
"os"
|
|||
|
|
|||
|
log "github.com/sirupsen/logrus"
|
|||
|
"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 查看命令`
|
|||
|
log.Printf("%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)
|
|||
|
}
|
|||
|
}
|