gte/cmd/cli/command/empty.go

12 lines
155 B
Go
Raw Normal View History

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