mirror of
https://github.com/pocket-id/pocket-id.git
synced 2026-05-15 17:39:53 +00:00
13 lines
300 B
Go
13 lines
300 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, rateLimitMiddleware gin.HandlerFunc, oidcService *service.OidcService) error {
|
|
return ErrFrontendNotIncluded
|
|
}
|