Add shortcuts

Signed-off-by: jolheiser <john.olheiser@gmail.com>
pull/7/head
jolheiser 2021-02-27 23:03:43 -06:00
parent ba9333a076
commit f9d94d76de
Signed by: jolheiser
GPG Key ID: B853ADA5DA7BBF7A
5 changed files with 14 additions and 10 deletions

View File

@ -15,8 +15,9 @@ import (
) )
var Add = cli.Command{ var Add = cli.Command{
Name: "add", Name: "add",
Usage: "Add a package", Aliases: []string{"a"},
Usage: "Add a package",
Flags: []cli.Flag{ Flags: []cli.Flag{
&cli.BoolFlag{ &cli.BoolFlag{
Name: "force", Name: "force",

View File

@ -15,9 +15,10 @@ import (
) )
var Get = cli.Command{ var Get = cli.Command{
Name: "get", Name: "get",
Usage: "Get package(s)", Aliases: []string{"g"},
Action: doGet, Usage: "Get package(s)",
Action: doGet,
} }
func doGet(ctx *cli.Context) error { func doGet(ctx *cli.Context) error {

View File

@ -10,7 +10,7 @@ import (
var List = cli.Command{ var List = cli.Command{
Name: "list", Name: "list",
Aliases: []string{"l"}, Aliases: []string{"ls", "l"},
Usage: "List local packages", Usage: "List local packages",
Action: doList, Action: doList,
} }

View File

@ -14,8 +14,9 @@ import (
) )
var Server = cli.Command{ var Server = cli.Command{
Name: "server", Name: "server",
Usage: "Start the gpm server", Aliases: []string{"web"},
Usage: "Start the gpm server",
Flags: []cli.Flag{ Flags: []cli.Flag{
&cli.IntFlag{ &cli.IntFlag{
Name: "port", Name: "port",

View File

@ -13,8 +13,9 @@ import (
) )
var Update = cli.Command{ var Update = cli.Command{
Name: "update", Name: "update",
Usage: "Update a package", Aliases: []string{"u"},
Usage: "Update a package",
Flags: []cli.Flag{ Flags: []cli.Flag{
&cli.BoolFlag{ &cli.BoolFlag{
Name: "local", Name: "local",