10 lines
179 B
Python
10 lines
179 B
Python
from injectable import inject
|
|
|
|
from app.core.core import WebhookProcessor
|
|
|
|
|
|
class AutowireSupport:
|
|
|
|
@staticmethod
|
|
def webhook_processor():
|
|
return inject(WebhookProcessor)
|