Added caching and implemented UserService

This commit is contained in:
2026-04-07 11:19:38 +02:00
parent aa451e4786
commit 4f96b1d687
11 changed files with 488 additions and 3 deletions

View File

@@ -5,6 +5,7 @@ import {callHandlers} from "./handlers/call.http";
import {fileUploadHandlers} from "./handlers/fUpl.http";
import {chatHandlers} from "./handlers/chat.http";
import {dmHandlers} from "./handlers/dm.http";
import {userHandler} from "./handlers/user.http";
export const allHandlers = [
...authHandlers,
@@ -13,5 +14,6 @@ export const allHandlers = [
...callHandlers,
...fileUploadHandlers,
...chatHandlers,
...dmHandlers
...dmHandlers,
...userHandler
]