WIP : create antrian operasi

This commit is contained in:
renaldybrada
2026-01-30 08:01:07 +07:00
parent 1e15a2e1ec
commit eab5b428ea
10 changed files with 236 additions and 19 deletions
+7
View File
@@ -1,5 +1,12 @@
package shared
type BaseErrorResponse struct {
Success bool `json:"success"`
Code int `json:"code"`
Message string `json:"message"`
Errors []string `json:"errors"`
}
type BaseResponse[T any] struct {
Success bool `json:"success"`
Code int `json:"code"`