Files
tuu/router.go
2017-11-10 06:54:12 +00:00

10 lines
158 B
Go

package tuu
type Handler func(Context) error
type Router interface {
GET(path string, ctx Context)
POST(path string, ctx Context)
GetRoutes() []*Route
}