10 lines
138 B
Go
10 lines
138 B
Go
package auth
|
|
|
|
import (
|
|
"reichard.io/imagini/graph/model"
|
|
)
|
|
|
|
func authenticateLDAPUser(user model.User, pw string) bool {
|
|
return false
|
|
}
|