To reduce bot traffic you must login to view /lordwelch/glauth/src/commit/80314d335bab722f4875e5920506a5d5e01c2b0e/v2/pkg/plugins.
The GitHub login only links via username.
Files
timmy 013f8f68fc Make embed build more robust
Pull plugin dependencies that are not already in glauth's go.mod
Use a general embed tag instead of embedsqlite and embedmysql
2026-09-19 17:09:15 -07:00

13 lines
236 B
Go

//go:build embed
package server
import (
"github.com/glauth/glauth/v2/pkg/embed"
"github.com/glauth/glauth/v2/pkg/handler"
)
func NewEmbed(opts ...handler.Option) (handler.Handler, error) {
return embed.NewHandler(opts...), nil
}