func actionCreate(c *cli.Context) { command := &commandCreate{ Ctx: &handler.Context{ CLIContext: c, }, } handler.Handle(command) }
func actionUpdateMetadata(c *cli.Context) { command := &commandUpdateMetadata{ Ctx: &handler.Context{ CLIContext: c, }, } handler.Handle(command) }
func actionGet(c *cli.Context) { command := &commandGet{ Ctx: &handler.Context{ CLIContext: c, }, } handler.Handle(command) }
func actionListEvents(c *cli.Context) { command := &commandListEvents{ Ctx: &handler.Context{ CLIContext: c, }, } handler.Handle(command) }
func actionResize(c *cli.Context) { command := &commandResize{ Ctx: &handler.Context{ CLIContext: c, }, } handler.Handle(command) }
func actionUpload(c *cli.Context) { command := &commandUpload{ Ctx: &handler.Context{ CLIContext: c, }, } handler.Handle(command) }
func actionListAddressesByNetwork(c *cli.Context) { command := &commandListAddressesByNetwork{ Ctx: &handler.Context{ CLIContext: c, }, } handler.Handle(command) }
func actionPreview(c *cli.Context) { command := &commandPreview{ Ctx: &handler.Context{ CLIContext: c, }, } handler.Handle(command) }
func actionEmpty(c *cli.Context) { command := &commandEmpty{ Ctx: &handler.Context{ CLIContext: c, }, } handler.Handle(command) }
func actionAbandon(c *cli.Context) { command := &commandAbandon{ Ctx: &handler.Context{ CLIContext: c, }, } handler.Handle(command) }