Add endpoint to add funds (#99)
All checks were successful
Backend Deploy / build (push) Successful in 2m55s
Backend Build and Test / build (push) Successful in 3m5s

Closes #91

Reviewed-on: #99
This commit was merged in pull request #99.
This commit is contained in:
2025-05-27 12:02:07 +02:00
parent db2f518cc2
commit 8380e95217
4 changed files with 216 additions and 39 deletions

View File

@@ -73,3 +73,8 @@ type CreateTaskRequest struct {
type CreateTaskResponse struct {
ID int `json:"id"`
}
type AddAllowanceAmountRequest struct {
Amount float64 `json:"amount"`
Description string `json:"description"`
}