示例#1
0
func actionCreate(c *cli.Context) {
	command := &commandCreate{
		Ctx: &handler.Context{
			CLIContext: c,
		},
	}
	handler.Handle(command)
}
示例#2
0
func actionUpdateMetadata(c *cli.Context) {
	command := &commandUpdateMetadata{
		Ctx: &handler.Context{
			CLIContext: c,
		},
	}
	handler.Handle(command)
}
示例#3
0
文件: get.go 项目: reaperzn/rack
func actionGet(c *cli.Context) {
	command := &commandGet{
		Ctx: &handler.Context{
			CLIContext: c,
		},
	}
	handler.Handle(command)
}
示例#4
0
func actionListEvents(c *cli.Context) {
	command := &commandListEvents{
		Ctx: &handler.Context{
			CLIContext: c,
		},
	}
	handler.Handle(command)
}
示例#5
0
func actionResize(c *cli.Context) {
	command := &commandResize{
		Ctx: &handler.Context{
			CLIContext: c,
		},
	}
	handler.Handle(command)
}
示例#6
0
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)
}
示例#8
0
func actionPreview(c *cli.Context) {
	command := &commandPreview{
		Ctx: &handler.Context{
			CLIContext: c,
		},
	}
	handler.Handle(command)
}
示例#9
0
func actionEmpty(c *cli.Context) {
	command := &commandEmpty{
		Ctx: &handler.Context{
			CLIContext: c,
		},
	}
	handler.Handle(command)
}
示例#10
0
func actionAbandon(c *cli.Context) {
	command := &commandAbandon{
		Ctx: &handler.Context{
			CLIContext: c,
		},
	}
	handler.Handle(command)
}