Files

14 lines
191 B
Python
Raw Permalink Normal View History

from pydantic import BaseModel
class WorkflowOut(BaseModel):
id: str
downloads: int
2026-08-11 11:23:52 +02:00
class InstallIn(BaseModel):
install_id: str
version: str
os: str
platform: str