Typing status

This commit is contained in:
2024-08-23 19:32:24 +08:00
parent 21e7c19fca
commit 76889d23aa
6 changed files with 139 additions and 25 deletions

View File

@ -16,3 +16,7 @@ func BindAndValidate(c *fiber.Ctx, out any) error {
return nil
}
func ValidateStruct(in any) error {
return validation.Struct(in)
}