12 lines
155 B
Go
12 lines
155 B
Go
|
package command
|
||
|
|
||
|
type Empty struct{}
|
||
|
|
||
|
func NewEmpty() (*Empty, error) {
|
||
|
return &Empty{}, nil
|
||
|
}
|
||
|
|
||
|
func (cmd *Empty) Do() string {
|
||
|
return "did nothing\n"
|
||
|
}
|