예제 #1
0
파일: get.go 프로젝트: hdansou/rack
func actionGet(c *cli.Context) {
	command := &commandGet{
		Ctx: &handler.Context{
			CLIContext: c,
		},
	}
	handler.Handle(command)
}
예제 #2
0
파일: download.go 프로젝트: mrhillsman/rack
func actionDownload(c *cli.Context) {
	command := &commandDownload{
		Ctx: &handler.Context{
			CLIContext: c,
		},
	}
	handler.Handle(command)
}
예제 #3
0
파일: delete.go 프로젝트: harshalhshah/rack
func actionDelete(c *cli.Context) {
	command := &commandDelete{
		Ctx: &handler.Context{
			CLIContext: c,
		},
	}
	handler.Handle(command)
}
예제 #4
0
파일: rebuild.go 프로젝트: flazz/rack
func actionRebuild(c *cli.Context) {
	command := &commandRebuild{
		Ctx: &handler.Context{
			CLIContext: c,
		},
	}
	handler.Handle(command)
}
예제 #5
0
func actionSetMetadata(c *cli.Context) {
	command := &commandSetMetadata{
		Ctx: &handler.Context{
			CLIContext: c,
		},
	}
	handler.Handle(command)
}
예제 #6
0
func actionListAddresses(c *cli.Context) {
	command := &commandListAddresses{
		Ctx: &handler.Context{
			CLIContext: c,
		},
	}
	handler.Handle(command)
}
예제 #7
0
func actionUploadDir(c *cli.Context) {
	command := &commandUploadDir{
		Ctx: &handler.Context{
			CLIContext: c,
		},
	}
	handler.Handle(command)
}
예제 #8
0
파일: empty.go 프로젝트: harshalhshah/rack
func actionEmpty(c *cli.Context) {
	command := &commandEmpty{
		Ctx: &handler.Context{
			CLIContext: c,
		},
	}
	handler.Handle(command)
}