This commit is contained in:
Piotr Dec 2025-10-08 01:12:12 +02:00
parent b18488a6d3
commit e1c32b6a20
Signed by: stawros
GPG key ID: 74B18A3F0F1E99C0
3 changed files with 27 additions and 1 deletions

15
app/api/models.py Normal file
View file

@ -0,0 +1,15 @@
from dataclasses import dataclass
from typing import List
@dataclass
class Request:
build_id: str
build_url: str
commit_id: str
commit_url: str
changelist: List[str]
@dataclass
class Response:
status: int