Ejemplo n.º 1
0
Archivo: get.go Proyecto: hdansou/rack
func actionGet(c *cli.Context) {
	command := &commandGet{
		Ctx: &handler.Context{
			CLIContext: c,
		},
	}
	handler.Handle(command)
}
Ejemplo n.º 2
0
func actionDownload(c *cli.Context) {
	command := &commandDownload{
		Ctx: &handler.Context{
			CLIContext: c,
		},
	}
	handler.Handle(command)
}
Ejemplo n.º 3
0
func actionDelete(c *cli.Context) {
	command := &commandDelete{
		Ctx: &handler.Context{
			CLIContext: c,
		},
	}
	handler.Handle(command)
}
Ejemplo n.º 4
0
func actionRebuild(c *cli.Context) {
	command := &commandRebuild{
		Ctx: &handler.Context{
			CLIContext: c,
		},
	}
	handler.Handle(command)
}
Ejemplo n.º 5
0
func actionSetMetadata(c *cli.Context) {
	command := &commandSetMetadata{
		Ctx: &handler.Context{
			CLIContext: c,
		},
	}
	handler.Handle(command)
}
Ejemplo n.º 6
0
func actionListAddresses(c *cli.Context) {
	command := &commandListAddresses{
		Ctx: &handler.Context{
			CLIContext: c,
		},
	}
	handler.Handle(command)
}
Ejemplo n.º 7
0
func actionUploadDir(c *cli.Context) {
	command := &commandUploadDir{
		Ctx: &handler.Context{
			CLIContext: c,
		},
	}
	handler.Handle(command)
}
Ejemplo n.º 8
0
func actionEmpty(c *cli.Context) {
	command := &commandEmpty{
		Ctx: &handler.Context{
			CLIContext: c,
		},
	}
	handler.Handle(command)
}