feat: active user count

This commit is contained in:
Timothy J. Baek
2024-06-04 01:10:31 -07:00
parent 4925a6530b
commit bbfa54a6b9
4 changed files with 50 additions and 17 deletions

View File

@@ -15,6 +15,7 @@ export const MODEL_DOWNLOAD_POOL = writable({});
export const mobile = writable(false);
export const socket: Writable<null | Socket> = writable(null);
export const activeUserCount: Writable<null | number> = writable(null);
export const theme = writable('system');
export const chatId = writable('');