karl/app/core/injects.py
2025-10-21 17:45:32 +02:00

10 lines
179 B
Python

from injectable import inject
from app.core.core import WebhookProcessor
class AutowireSupport:
@staticmethod
def webhook_processor():
return inject(WebhookProcessor)