Files
fn-serverless/cli/images.go
Travis Reeder 48e3781d5e Rename to GitHub (#3)
* circle

* Rename to github and fn->cli

*  Rename to github and fn->cli
2017-07-26 10:50:19 -07:00

27 lines
355 B
Go

package main
import (
"github.com/funcy/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(),
},
}
}