10 lines
178 B
Go
10 lines
178 B
Go
package client
|
|
|
|
type listCommand struct {
|
|
Action string
|
|
Args []string
|
|
}
|
|
|
|
func newListCommand(action string, args ...string) listCommand {
|
|
return listCommand{action, args}
|
|
}
|