Files
fn-serverless/fn/images.go
2017-04-19 09:49:12 -06:00

27 lines
357 B
Go

package main
import (
"github.com/kumokit/functions_go"
"github.com/urfave/cli"
)
type imagesCmd struct {
*functions.AppsApi
}
func images() cli.Command {
return cli.Command{
Name: "images",
Usage: "manage function images",
Subcommands: []cli.Command{
build(),
deploy(),
bump(),
call(),
push(),
run(),
testfn(),
},
}
}