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

6
src/storage/database.ts Normal file
View File

@@ -0,0 +1,6 @@
export interface DatabaseAPI {
set(collection: string, key: string, value: any): void;
get(collection: string, key: string): string;
delete(collection: string, key: string): void;
flush(): void;
}