To reduce bot traffic you must login to view /lordwelch/glauth/src/commit/4759cef711caf73570ec9c85077d6221c2cf6e9a/v2/pkg/server/server.go.
The GitHub login only links via username.
Files
glauth/v2/pkg/server/embed_noembed.go
timmy 1549d440b7 Update ldap server implementation to github.com/gwelch-contegix/ldaps
Update ldap client implementation to github.com/go-ldap/ldap/v3
Add contexts to all relevant functions eg NewHandler
Provide backwards compatibility for sql handlers
2026-08-30 21:10:02 -07:00

15 lines
284 B
Go

//go:build !embed
package server
import (
"context"
"errors"
"github.com/glauth/glauth/v2/pkg/handler"
)
func NewEmbed(ctx context.Context, opts ...handler.Option) (handler.Handler, error) {
return nil, errors.New("GLAuth was not built with support for an embedded plugin")
}