mirror of
https://github.com/Luzifer/nginx-sso.git
synced 2024-12-21 05:11:17 +00:00
115182e445
* Define configuration for LDAP module * Implement LDAP auth * Vendor new dependencies * Add documentation for LDAP provider
13 lines
188 B
Go
13 lines
188 B
Go
// +build go1.4
|
|
|
|
package ldap
|
|
|
|
import (
|
|
"sync/atomic"
|
|
)
|
|
|
|
// For compilers that support it, we just use the underlying sync/atomic.Value
|
|
// type.
|
|
type atomicValue struct {
|
|
atomic.Value
|
|
}
|