mirror of
https://github.com/fnproject/fn.git
synced 2022-10-28 21:29:17 +03:00
Rename to GitHub (#3)
* circle * Rename to github and fn->cli * Rename to github and fn->cli
This commit is contained in:
26
cli/images.go
Normal file
26
cli/images.go
Normal file
@@ -0,0 +1,26 @@
|
||||
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(),
|
||||
},
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user