Files
gertdns/auth/auth.go
2021-10-17 12:35:38 +02:00

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
}