Update fn tool

This commit is contained in:
Denis Makogon
2017-06-08 11:46:56 -07:00
parent 478245de4c
commit 52137e3b61
7 changed files with 217 additions and 87 deletions

View File

@@ -12,12 +12,13 @@ import (
)
var aliases = map[string]cli.Command{
"build": build(),
"bump": bump(),
"deploy": deploy(),
"push": push(),
"run": run(),
"call": call(),
"build": build(),
"bump": bump(),
"deploy": deploy(),
"push": push(),
"run": run(),
"call": call(),
"calls": calls(),
}
func aliasesFn() []cli.Command {
@@ -77,6 +78,7 @@ GLOBAL OPTIONS:
images(),
lambda(),
version(),
calls(),
}
app.Commands = append(app.Commands, aliasesFn()...)