github.com/devcamcar/cli@v0.0.0-20181107134215-706a05759d18/objects/server/commands.go (about)

     1  package server
     2  
     3  import (
     4  	"github.com/urfave/cli"
     5  )
     6  
     7  func Update() cli.Command {
     8  	return cli.Command{
     9  		Name:        "server",
    10  		Usage:       "Pulls latest functions server",
    11  		Category:    "MANAGEMENT COMMAND",
    12  		Description: "This command updates the latest Fn server",
    13  		Aliases:     []string{"sv"},
    14  		Action:      update,
    15  	}
    16  }