changes in the fn organization and aliases (#475)

This commit is contained in:
Pedro Nasser
2017-01-05 16:00:31 -02:00
committed by C Cirello
parent bec75118c2
commit e68df5d154
4 changed files with 78 additions and 16 deletions

27
fn/images.go Normal file
View File

@@ -0,0 +1,27 @@
package main
import (
"github.com/iron-io/functions_go"
"github.com/urfave/cli"
)
type imagesCmd struct {
*functions.AppsApi
}
func images() cli.Command {
return cli.Command{
Name: "images",
Usage: "manage function images",
ArgsUsage: "fn images",
Subcommands: []cli.Command{
build(),
deploy(),
bump(),
call(),
push(),
run(),
testfn(),
},
}
}