SDK update generated by liblab

This commit is contained in:
Luke Hagar
2023-10-26 21:45:48 -05:00
parent 9a250ff514
commit ce4441cfc5
101 changed files with 13165 additions and 1 deletions

View File

@@ -0,0 +1,10 @@
from enum import Enum
class State(Enum):
PLAYING = "playing"
PAUSED = "paused"
STOPPED = "stopped"
def list():
return list(map(lambda x: x.value, State._member_map_.values()))