Implement center connection handling

This commit is contained in:
David Majdandžić
2023-03-28 17:18:36 +02:00
parent fc06eb8a81
commit b2b9e5a620
4 changed files with 78 additions and 24 deletions

View File

@@ -0,0 +1,5 @@
export default class CenterStatus {
static readonly WAITING_CONNECTION: string = "WAITING CONNECTION";
static readonly CONNECTING: string = "CONNECTING";
static readonly CONNECTED: string = "CONNECTED";
}