mirror of
https://github.com/MarekWojt/gertdns.git
synced 2025-12-13 12:19:53 +01:00
12 lines
192 B
Go
12 lines
192 B
Go
package auth
|
|
|
|
type AuthenticationRequest struct {
|
|
User string
|
|
Password string
|
|
Domain string
|
|
}
|
|
|
|
func IsAuthenticated(request AuthenticationRequest) (bool, error) {
|
|
return true, nil
|
|
}
|