Files
MacroPadOS/app/app_state.py
T
2022-04-17 19:43:03 -04:00

13 lines
249 B
Python

class InvalidStateUpdateError(Exception):
pass
class AppState(object):
STARTING = "starting"
RESUMING = "resuming"
RUNNING = "running"
PAUSING = "pausing"
PAUSED = "paused"
STOPPING = "stopping"
STOPPED = "stopped"