2021-07-09 09:42:44 +02:00
|
|
|
package command
|
|
|
|
|
|
|
|
type Empty struct{}
|
|
|
|
|
|
|
|
func NewEmpty() (*Empty, error) {
|
|
|
|
return &Empty{}, nil
|
|
|
|
}
|
|
|
|
|
2021-07-26 06:59:31 +02:00
|
|
|
func (e *Empty) Cmd() string { return "empty" }
|
|
|
|
|
2021-07-09 09:42:44 +02:00
|
|
|
func (cmd *Empty) Do() string {
|
|
|
|
return "did nothing\n"
|
|
|
|
}
|