13 lines
321 B
Go
13 lines
321 B
Go
|
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...)
|
||
|
}
|