mirror of
https://github.com/cubixle/tuu.git
synced 2026-04-24 21:24:43 +01:00
10 lines
158 B
Go
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
|
|
}
|