blob: e3dabaaaf1b2e795aa2bd09cdb8c073489704f16 [file] [log] [blame]
package api
import (
"github.com/go-chi/chi/v5"
)
// FrontendApi provides an interface for frontend apis to implement.
type FrontendApi interface {
// RegisterHandlers registers the api handlers for their respective routes.
RegisterHandlers(*chi.Mux)
}