github.com/aneshas/cli@v0.0.0-20180104210444-aec958fa47db/images.go (about)

     1  package main
     2  
     3  import (
     4  	"github.com/fnproject/fn_go/client"
     5  	"github.com/urfave/cli"
     6  )
     7  
     8  type imagesCmd struct {
     9  	*client.Fn
    10  }
    11  
    12  func images() cli.Command {
    13  	return cli.Command{
    14  		Name:  "images",
    15  		Usage: "manage function images",
    16  		Subcommands: []cli.Command{
    17  			build(),
    18  			deploy(),
    19  			bump(),
    20  			call(),
    21  			push(),
    22  			run(),
    23  			testfn(),
    24  		},
    25  	}
    26  }