Base Project

This commit is contained in:
Tran Anh Tuan
2026-05-08 14:32:24 +07:00
parent 5a9249c9ea
commit 6a4a96e0ca
74 changed files with 6749 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
package responses
type BodyRegisterResponse struct {
ID string `json:"id"`
}
type BodyLoginResponse struct {
Token string `json:"token"`
}

View File

@@ -0,0 +1,5 @@
package responses
type BodyRoleResponse struct {
ID string `json:"id"`
}

View File

@@ -0,0 +1,12 @@
package responses
type CreateWarehouseResponse struct {
ID int64 `json:"id"`
}
type UpdateWarehouseResponse struct {
ID int64 `json:"id"`
Name string `json:"name"`
Description string `json:"description"`
Address string `json:"address"`
}