2
2
mirror of https://github.com/m1k1o/neko.git synced 2024-07-24 14:40:50 +12:00
2021-09-17 00:58:50 +02:00

7 lines
107 B
Go

package types
type ApiManager interface {
Route(r Router)
AddRouter(path string, router func(Router))
}