|
package command
|
|
|
|
import "github.com/spf13/cobra"
|
|
|
|
var RootCmd = &cobra.Command{
|
|
Use: "product_service",
|
|
Short: "A CLI for Product Service",
|
|
Long: `Product Service CLI is a tool to manage and run
|
|
the product service, including migrations and server startup.`,
|
|
}
|