コード例 #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
ファイル: setmetadata.go プロジェクト: harshalhshah/rack
func actionSetMetadata(c *cli.Context) {
	command := &commandSetMetadata{
		Ctx: &handler.Context{
			CLIContext: c,
		},
	}
	handler.Handle(command)
}
コード例 #6
0
ファイル: listaddresses.go プロジェクト: harshalhshah/rack
func actionListAddresses(c *cli.Context) {
	command := &commandListAddresses{
		Ctx: &handler.Context{
			CLIContext: c,
		},
	}
	handler.Handle(command)
}
コード例 #7
0
ファイル: uploaddir.go プロジェクト: harshalhshah/rack
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)
}