6 lines
241 B
Python
6 lines
241 B
Python
from .kab_ingestion.domain.models import IngestionRequest
|
|
|
|
|
|
def github_trigger(locator: str, requested_by: str = "github-webhook") -> IngestionRequest:
|
|
return IngestionRequest(source="github", locator=locator, requested_by=requested_by)
|