feat: finish back-end work (untested)

This commit is contained in:
2025-11-12 12:58:21 -07:00
parent b6a08573f3
commit 8b351524b8
18 changed files with 300 additions and 27 deletions

6
api/dto/user_request.go Normal file
View File

@@ -0,0 +1,6 @@
package dto
type UserRequest struct {
Name string `json:"name"`
JobPosition string `json:"job_position"`
}