mirror of
https://github.com/crawlab-team/crawlab.git
synced 2026-01-23 17:31:11 +01:00
feat: added utils cli
This commit is contained in:
15
cli/cmd/root.go
Normal file
15
cli/cmd/root.go
Normal file
@@ -0,0 +1,15 @@
|
||||
package cmd
|
||||
|
||||
import (
|
||||
"github.com/spf13/cobra"
|
||||
)
|
||||
|
||||
var RootCmd = &cobra.Command{
|
||||
Use: "crawlab",
|
||||
Short: "Crawlab CLI tool",
|
||||
Long: `Command line interface for Crawlab, the distributed web crawler admin platform`,
|
||||
}
|
||||
|
||||
func init() {
|
||||
RootCmd.AddCommand(protoCmd)
|
||||
}
|
||||
Reference in New Issue
Block a user