Integrate the relay authentication

This commit is contained in:
Zoltan Papp
2024-07-05 16:12:30 +02:00
parent 8845e8fbc7
commit 836072098b
30 changed files with 3055 additions and 1594 deletions

5
relay/auth/validator.go Normal file
View File

@@ -0,0 +1,5 @@
package auth
type Validator interface {
Validate(any) error
}