gridscale-check/servers.go

15 lines
300 B
Go
Raw Normal View History

2018-04-24 23:55:15 +02:00
// Copyright 2018 Felix Kronlage <fkr@hazardous.org>
package main
type ServersCommand struct {
2018-04-25 00:21:15 +02:00
List ListServersCommand `command:"list"`
Status ServersStatusCommand `command:"status"`
2018-04-24 23:55:15 +02:00
}
var serversCommand StoragesCommand
func (x *ServersCommand) Execute(args []string) error {
return nil
}