UPDATE: fix bug
All checks were successful
Build and Release / release (push) Successful in 1m8s

This commit is contained in:
2026-04-14 17:33:58 +07:00
parent 7f30dff737
commit 4e1e9892ac
6 changed files with 51 additions and 49 deletions

View File

@@ -9,6 +9,7 @@ import (
type CommonResponse struct {
Status bool `json:"status"`
Data any `json:"data"`
Errors any `json:"errors"`
Message string `json:"message"`
}
@@ -30,6 +31,7 @@ type PaginatedResponse struct {
Status bool `json:"status"`
Message string `json:"message"`
Data any `json:"data"`
Errors any `json:"errors"`
Pagination *PaginationMeta `json:"pagination"`
}