6 lines
191 B
Python
6 lines
191 B
Python
from collections.abc import Callable
|
|
|
|
def register_triggers(app: dict, handler: Callable) -> None:
|
|
app["triggers"]["github_push"] = handler
|
|
app["triggers"]["manual_ingest"] = handler
|