karl/app/model/webhook.py

10 lines
167 B
Python

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