mirror of
https://github.com/pocket-id/pocket-id.git
synced 2026-05-15 09:29:53 +00:00
Co-authored-by: Alessandro (Ale) Segala <43508+ItalyPaleAle@users.noreply.github.com> Co-authored-by: Kyle Mendell <kmendell@ofkm.us> Co-authored-by: Elias Schneider <login@eliasschneider.com>
13 lines
263 B
Go
13 lines
263 B
Go
//go:build exclude_frontend
|
|
|
|
package frontend
|
|
|
|
import (
|
|
"github.com/gin-gonic/gin"
|
|
"github.com/pocket-id/pocket-id/backend/internal/service"
|
|
)
|
|
|
|
func RegisterFrontend(router *gin.Engine, oidcService *service.OidcService) error {
|
|
return ErrFrontendNotIncluded
|
|
}
|