feat: new endpoints for users and updated models

This commit is contained in:
2025-07-18 02:58:22 +05:00
parent 733977f56e
commit 2e59d03784
10 changed files with 351 additions and 1 deletions

View 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