feat: new endpoints for users and updated models
This commit is contained in:
7
app/models/server/command.py
Normal file
7
app/models/server/command.py
Normal file
@ -0,0 +1,7 @@
|
||||
from pydantic import BaseModel
|
||||
from typing import Optional
|
||||
|
||||
class ServerCommand(BaseModel):
|
||||
command: str
|
||||
server_ip: str
|
||||
require_online_player: Optional[bool] = False
|
Reference in New Issue
Block a user