dokumentasi antrian operasi

This commit is contained in:
renaldybrada
2026-02-02 09:24:11 +07:00
parent 919085ba3a
commit 3edbd8b193
10 changed files with 1222 additions and 10 deletions
+1 -1
View File
@@ -11,7 +11,7 @@ type BaseResponse[T any] struct {
Success bool `json:"success"`
Code int `json:"code"`
Message string `json:"message"`
Data T `json:"data"`
Data T `json:"data" swaggertype:"object"`
}
func ToBaseResponse[T any](data T, isSuccess bool, code int, message string) BaseResponse[T] {