add login route

This commit is contained in:
2026-07-02 03:30:51 +07:00
parent d22ad7cb09
commit 20ada8caa2
9 changed files with 389 additions and 12 deletions
+6 -2
View File
@@ -1,6 +1,10 @@
package repos
type User struct {
Username string
Email string
ID string
Username string
Email string
PasswordHash string
Role string
IsActive bool
}