Files
LeetCode-Go/ctl/pdf.go
2021-01-15 22:32:12 +08:00

18 lines
357 B
Go

package main
import (
"github.com/spf13/cobra"
)
func newPDFCommand() *cobra.Command {
cmd := &cobra.Command{
Use: "pdf <subcommand>",
Short: "PDF related commands",
Run: func(cmd *cobra.Command, args []string) {
},
}
//mc.PersistentFlags().StringVar(&logicEndpoint, "endpoint", "localhost:5880", "endpoint of logic service")
return cmd
}