feature: update owners by websocket

This commit is contained in:
Alzalia 2025-08-08 14:23:23 +02:00
parent 49e74feb4f
commit 116bacf428
6 changed files with 139 additions and 23 deletions

26
.vscode/launch.json vendored Normal file
View file

@ -0,0 +1,26 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "seshat",
"request": "launch",
"type": "dart",
"flutterMode": "debug",
},
{
"name": "seshat (profile mode)",
"request": "launch",
"type": "dart",
"flutterMode": "profile"
},
{
"name": "seshat (release mode)",
"request": "launch",
"type": "dart",
"flutterMode": "release"
}
]
}