mirror of
https://gitlab.crans.org/nounous/ghostream.git
synced 2025-02-06 06:42:59 +00:00
12 lines
179 B
Go
12 lines
179 B
Go
package auth
|
|
|
|
import (
|
|
"gitlab.crans.org/nounous/ghostream/auth/ldap"
|
|
)
|
|
|
|
// Options holds web package configuration
|
|
type Options struct {
|
|
Backend string
|
|
LDAP ldap.Options
|
|
}
|