APIv1 cbv

This commit is contained in:
Piotr Dec 2025-10-21 17:41:41 +02:00
parent de6184273a
commit 120e929469
Signed by: stawros
GPG key ID: 74B18A3F0F1E99C0
3 changed files with 37 additions and 8 deletions

11
app/model/webhook.py Normal file
View file

@ -0,0 +1,11 @@
from dataclasses import dataclass
from typing import List
@dataclass
class WebhookRequest:
_id: str
commit: str
message: str
started: str
files: List[str]