summaryrefslogtreecommitdiff
path: root/wrappers/python/src/state.py
diff options
context:
space:
mode:
Diffstat (limited to 'wrappers/python/src/state.py')
-rw-r--r--wrappers/python/src/state.py24
1 files changed, 0 insertions, 24 deletions
diff --git a/wrappers/python/src/state.py b/wrappers/python/src/state.py
deleted file mode 100644
index 5af004f..0000000
--- a/wrappers/python/src/state.py
+++ /dev/null
@@ -1,24 +0,0 @@
-from enum import IntEnum
-
-
-class StateType(IntEnum):
- Enter = 1
- Leave = 2
- Wait = 3
-
-
-class State(IntEnum):
- DEREGISTERED = 0
- NO_SERVER = 1
- ASK_LOCATION = 2
- SEARCH_SERVER = 3
- LOADING_SERVER = 4
- CHOSEN_SERVER = 5
- OAUTH_STARTED = 6
- AUTHORIZED = 7
- REQUEST_CONFIG = 8
- ASK_PROFILE = 9
- DISCONNECTED = 10
- DISCONNECTING = 11
- CONNECTING = 12
- CONNECTED = 13