neko/pkg/types/api.go

7 lines
107 B
Go
Raw Normal View History

2020-11-01 16:54:06 +01:00
package types
type ApiManager interface {
2021-09-17 00:58:50 +02:00
Route(r Router)
AddRouter(path string, router func(Router))
2020-11-01 16:54:06 +01:00
}