add bulk users

This commit is contained in:
Aditya Siregar
2025-08-15 22:42:58 +07:00
parent e1a5e9efd3
commit 5966301165
8 changed files with 313 additions and 25 deletions
+7
View File
@@ -174,3 +174,10 @@ type BulkCreationSummary struct {
Succeeded int `json:"succeeded"`
Failed int `json:"failed"`
}
// BulkCreateAsyncResponse represents the immediate response for async bulk creation
type BulkCreateAsyncResponse struct {
JobID uuid.UUID `json:"job_id"`
Message string `json:"message"`
Status string `json:"status"`
}