wm/src/handler/domains/todo.go

15 lines
197 B
Go
Raw Normal View History

2023-06-11 10:24:15 +00:00
package domains
import (
"tuxpa.in/t/wm/src/copies"
"tuxpa.in/t/wm/src/sock"
)
type Todo struct {
inject
}
func (n Todo) Run(msg *sock.Msg) ([]byte, error) {
return nil, &copies.ErrTODO{}
}