mirror of
https://github.com/pocket-id/pocket-id.git
synced 2026-08-23 05:16:29 +00:00
12 lines
170 B
Go
12 lines
170 B
Go
//go:build exclude_frontend
|
|
|
|
package frontend
|
|
|
|
import (
|
|
"github.com/gin-gonic/gin"
|
|
)
|
|
|
|
func RegisterFrontend(router *gin.Engine) error {
|
|
return ErrFrontendNotIncluded
|
|
}
|