13 lines
325 B
Go
13 lines
325 B
Go
package network
|
|
|
|
import (
|
|
"forge.cadoles.com/cadoles/bouncer/internal/proxy/director/layer/authn"
|
|
"forge.cadoles.com/cadoles/bouncer/internal/store"
|
|
)
|
|
|
|
const LayerType store.LayerType = "authn-network"
|
|
|
|
func NewLayer(funcs ...authn.OptionFunc) *authn.Layer {
|
|
return authn.NewLayer(LayerType, &Authenticator{}, funcs...)
|
|
}
|