Started work on websocket communication: Parsing/Serialization of WebSocket packets.

This commit is contained in:
Jakob Friedl
2025-09-22 21:53:13 +02:00
parent 42cc58b30b
commit d3b37aa4a1
12 changed files with 388 additions and 61 deletions

View File

@@ -6,9 +6,9 @@ import ../utils/appImGui
import ../../common/[types, utils]
type
SessionsTableComponent = ref object of RootObj
SessionsTableComponent* = ref object of RootObj
title: string
agents: seq[Agent]
agents*: seq[Agent]
selection: ptr ImGuiSelectionBasicStorage
consoles: ptr Table[string, ConsoleComponent]