neko/internal/types/api.go

11 lines
152 B
Go
Raw Normal View History

2020-11-02 04:54:06 +13:00
package types
import (
"github.com/go-chi/chi"
)
type ApiManager interface {
2020-11-15 06:16:25 +13:00
Route(r chi.Router)
2020-12-13 06:37:19 +13:00
AddRouter(path string, router func(chi.Router))
2020-11-02 04:54:06 +13:00
}