mirror of
https://github.com/pocket-id/pocket-id.git
synced 2026-08-24 21:17:31 +00:00
Co-authored-by: Alessandro (Ale) Segala <43508+ItalyPaleAle@users.noreply.github.com>
10 lines
165 B
Go
10 lines
165 B
Go
//go:build exclude_frontend
|
|
|
|
package frontend
|
|
|
|
import "github.com/gin-gonic/gin"
|
|
|
|
func RegisterFrontend(router *gin.Engine) error {
|
|
return ErrFrontendNotIncluded
|
|
}
|