PaKex Key exchange

This commit is contained in:
2025-03-01 15:22:51 +08:00
parent af2bc29068
commit 378c60cef8
5 changed files with 136 additions and 36 deletions

View File

@ -30,3 +30,7 @@ func GetRedirectUri(c *fiber.Ctx, fallback ...string) *string {
return nil
}
}
func ValidateStruct(in any) error {
return validation.Struct(in)
}