diff options
Diffstat (limited to 'cmd/ponzu/main.go')
-rw-r--r-- | cmd/ponzu/main.go | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/cmd/ponzu/main.go b/cmd/ponzu/main.go index bfe501a..6d5afd2 100644 --- a/cmd/ponzu/main.go +++ b/cmd/ponzu/main.go @@ -113,9 +113,10 @@ var ErrWrongOrMissingService = errors.New("To execute 'ponzu serve', " + "you must specify which service to run.") var serveCmd = &cobra.Command{ - Use: "serve <service,service>", - Short: "actually run the server", - Hidden: true, + Use: "serve <service,service>", + Aliases: []string{"s"}, + Short: "actually run the server", + Hidden: true, RunE: func(cmd *cobra.Command, args []string) error { if len(args) == 0 { return ErrWrongOrMissingService |