karl/app/model/webhook.py
2025-11-03 22:50:50 +01:00

11 lines
168 B
Python

from dataclasses import dataclass
from typing import List
@dataclass
class WoodpeckerEvent:
_id: str
commit: str
message: str
started: str
files: List[str]