Files
forge/internal/cmd/makecmd/app.go
2025-11-25 21:42:23 +08:00

19 lines
243 B
Go

package makecmd
import (
"github.com/spf13/cobra"
)
func App() *cobra.Command {
_cmd := &cobra.Command{
Use: "app",
Short: "Make Apps(user, client, gateway, mie, nginx, etc...)",
}
_cmd.AddCommand(
appUser(),
)
return _cmd
}