10 lines
103 B
Go
Raw Normal View History

2020-11-01 16:54:06 +01:00
package types
import (
"github.com/go-chi/chi"
)
type ApiManager interface {
2020-11-14 18:16:25 +01:00
Route(r chi.Router)
2020-11-01 16:54:06 +01:00
}