Finished implementing CallService

This commit is contained in:
2026-04-04 21:14:36 +02:00
parent cf9fee5186
commit 24285c3972
5 changed files with 101 additions and 1 deletions

View File

@@ -1,9 +1,11 @@
import {networkHandlers} from "./handlers/auth.http";
import {authHandlers} from "./handlers/network.http";
import {pictureHandlers} from "./handlers/picture.http";
import {callHandlers} from "./handlers/call.http";
export const allHandlers = [
...authHandlers,
...networkHandlers,
...pictureHandlers
...pictureHandlers,
...callHandlers
]