Files
ailai_show/CU/Command.py

16 lines
317 B
Python
Raw Normal View History

2025-07-29 13:16:30 +08:00
from enum import Enum
class Status(Enum):
Prepareing = 0
Runing = 1
End = 2
class Command:
def __init__(self):
self.status = Status.Prepareing
pass
class FeedCommand(Command):
def __init__(self, feedingConfig):
super().__init__()
self.feed_config = feedingConfig