bouncer/internal/proxy/director/layer/authn/basic/layer.go

13 lines
321 B
Go
Raw Normal View History

2024-05-21 12:10:52 +02:00
package basic
import (
"forge.cadoles.com/cadoles/bouncer/internal/proxy/director/layer/authn"
"forge.cadoles.com/cadoles/bouncer/internal/store"
)
const LayerType store.LayerType = "authn-basic"
func NewLayer(funcs ...authn.OptionFunc) *authn.Layer {
return authn.NewLayer(LayerType, &Authenticator{}, funcs...)
}