DNS, Config, Auth, Web (leer)

This commit is contained in:
2021-10-17 12:35:38 +02:00
parent 5843a8a488
commit 7c989eaaf4
7 changed files with 156 additions and 0 deletions

11
auth/auth.go Normal file
View File

@@ -0,0 +1,11 @@
package auth
type AuthenticationRequest struct {
User string
Password string
Domain string
}
func IsAuthenticated(request AuthenticationRequest) (bool, error) {
return true, nil
}