Finished implementing NetworkService

This commit is contained in:
2026-04-02 17:26:23 +02:00
parent bf4bd3e218
commit f61fcb4daa
13 changed files with 1304 additions and 37 deletions

View File

@@ -1,5 +1,7 @@
import {authHandlers} from "./handlers/auth.http";
import {networkHandlers} from "./handlers/auth.http";
import {authHandlers} from "./handlers/network.http";
export const allHandlers = [
...authHandlers
...authHandlers,
...networkHandlers
]