mirror of
https://github.com/Gozargah/Marzban.git
synced 2026-05-17 08:35:56 +03:00
11 lines
197 B
Python
11 lines
197 B
Python
from pydantic import BaseModel
|
|
|
|
|
|
class SystemStats(BaseModel):
|
|
mem_total: int
|
|
mem_used: int
|
|
total_user: int
|
|
users_active: int
|
|
incoming_bandwidth: int
|
|
outgoing_bandwith: int
|