15 lines
197 B
Go
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{}
|
|
}
|