uauth/internal/cmd/serve.go

12 lines
142 B
Go
Raw Normal View History

2024-10-23 17:46:15 +08:00
package cmd
import "github.com/spf13/cobra"
func initServe() *cobra.Command {
serve := &cobra.Command{
Use: "serve",
}
return serve
}