wm/src/handler/domains/todo.go
2023-06-11 05:24:15 -05:00

15 lines
197 B
Go

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{}
}