10 lines
101 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 {
Mount(r *chi.Mux)
}