add select department

This commit is contained in:
Kenta420 2023-12-28 11:07:17 +07:00
parent 17030c72ce
commit c5d54ad5c5
9 changed files with 79 additions and 8 deletions

View file

@ -4,3 +4,7 @@ type ResponseDefault struct {
Status string `json:"status"`
Message string `json:"message"`
}
type Response[T any] struct {
Result T `json:"result"`
}