feat: add nfctl(ctl to start nf project)
This commit is contained in:
19
nft/nfctl/cmd/cmd.go
Normal file
19
nft/nfctl/cmd/cmd.go
Normal file
@ -0,0 +1,19 @@
|
||||
package cmd
|
||||
|
||||
import "github.com/spf13/cobra"
|
||||
|
||||
var (
|
||||
Root = &cobra.Command{
|
||||
Use: "nfctl",
|
||||
Short: "nfctl: easy start your nf backend work",
|
||||
}
|
||||
)
|
||||
|
||||
func init() {
|
||||
initNew()
|
||||
|
||||
Root.AddCommand(
|
||||
versionCmd,
|
||||
cmdNew,
|
||||
)
|
||||
}
|
Reference in New Issue
Block a user