mirror of
https://github.com/halfrost/LeetCode-Go.git
synced 2025-08-01 17:07:19 +08:00
18 lines
357 B
Go
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
|
|
}
|