Add user registration with password hashing and restructure handlers directory

This commit is contained in:
2025-05-15 12:10:16 +03:30
parent 7aa8c26da9
commit b3fae6b80c
12 changed files with 124 additions and 45 deletions

View File

@@ -10,6 +10,7 @@ import (
type AppContext struct {
Db *gorm.DB
PostService *services.PostService
UserService *services.UserService
Instance string
Tag string
}