reformatting the default_app structure and worked on options menu.

This commit is contained in:
Lucas
2022-04-30 23:14:42 -04:00
parent 43104ac2d2
commit d8feab1636
10 changed files with 35 additions and 31 deletions
+12
View File
@@ -0,0 +1,12 @@
class InvalidStateUpdateError(Exception):
pass
class AppState(object):
STARTING = "starting"
RESUMING = "resuming"
RUNNING = "running"
PAUSING = "pausing"
PAUSED = "paused"
STOPPING = "stopping"
STOPPED = "stopped"