Merged
This commit is contained in:
commit
f110d66de9
11 changed files with 53 additions and 53 deletions
|
|
@ -1,7 +1,14 @@
|
|||
from enum import Enum
|
||||
from typing_extensions import TypedDict
|
||||
from typing import NotRequired
|
||||
|
||||
|
||||
class ProcessStatus(Enum):
|
||||
RUNNING = None
|
||||
STOPPED = 0
|
||||
CRASHED = 1
|
||||
|
||||
|
||||
class ServerPlayersList(TypedDict):
|
||||
online: int
|
||||
max: int
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue