fix: session authentication middleware

This commit is contained in:
2025-06-09 12:56:59 +01:00
parent ea9c5f0902
commit 14ce860c37
12 changed files with 283 additions and 97 deletions
+6
View File
@@ -0,0 +1,6 @@
package types
type LoginRequestBody struct {
Username string `json:"username" validate:"required"`
Password string `json:"password" validate:"password"`
}