karl/app/model/webhook.py
2025-10-31 00:01:45 +01:00

13 lines
202 B
Python

from dataclasses import dataclass
from typing import List
from app.events import Event
@dataclass
class WebhookEvent(Event):
_id: str
commit: str
message: str
started: str
files: List[str]