Files
crawlab/cli/cmd/root.go
2024-11-20 15:47:30 +08:00

16 lines
267 B
Go

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)
}