type todoService struct {}
func (t *todoService) CreateTodo(todo *Todo) error { return nil }
func (t *todoService) DeleteTodo(id string) (*Todo, error) { return nil, nil }
func (t *todoService) AddChild(parent string, todo *Todo) error { return nil }
todo := &todoService{}
api := rest.New()
api.Post("/todo", todo.CreateTodo).
api.Delete("/todo/:id", todo.DeleteTodo).
api.Post("/todo/:id/children", todo.AddChild).
-
Notifications
You must be signed in to change notification settings - Fork 0
alecthomas/rest
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
About
No description, website, or topics provided.
Resources
Stars
Watchers
Forks
Releases
No releases published
Packages 0
No packages published