Files
fn-serverless/fn/images.go
2017-01-05 19:00:31 +01:00

28 lines
391 B
Go

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(),
},
}
}