Add ServerState support in ChatService with SSE listener and associated data model

This commit is contained in:
2026-08-09 00:48:17 +02:00
parent 65d0118e3d
commit 2705cf14ab
2 changed files with 22 additions and 0 deletions
@@ -0,0 +1,14 @@
export interface User {
uuid: string;
name: string;
styledName: string;
}
export interface Server {
name: string;
players: User[];
}
export interface ServerState {
servers: Server[];
}