Finished implementing FileUploadService + added test workflow

This commit is contained in:
2026-04-05 11:50:44 +02:00
parent 24285c3972
commit e390012b1f
11 changed files with 323 additions and 5 deletions

View File

@@ -2,10 +2,12 @@ import {networkHandlers} from "./handlers/auth.http";
import {authHandlers} from "./handlers/network.http";
import {pictureHandlers} from "./handlers/picture.http";
import {callHandlers} from "./handlers/call.http";
import {fileUploadHandlers} from "./handlers/fUpl.http";
export const allHandlers = [
...authHandlers,
...networkHandlers,
...pictureHandlers,
...callHandlers
...callHandlers,
...fileUploadHandlers
]