neko/internal/types/api.go

10 lines
103 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-11-02 04:54:06 +13:00
}