update 更新Demo
This commit is contained in:
12
CU/Command.py
Normal file
12
CU/Command.py
Normal file
@ -0,0 +1,12 @@
|
||||
from enum import Enum
|
||||
class Status(Enum):
|
||||
Prepareing = 0
|
||||
Runing = 1
|
||||
End = 2
|
||||
|
||||
|
||||
class Command:
|
||||
def __init__(self):
|
||||
self.status = Status.Prepareing
|
||||
pass
|
||||
|
||||
Reference in New Issue
Block a user