APIv1 cbv

This commit is contained in:
Piotr Dec 2025-10-21 17:41:41 +02:00
parent de6184273a
commit 120e929469
Signed by: stawros
GPG key ID: 74B18A3F0F1E99C0
3 changed files with 37 additions and 8 deletions

10
app/core/injects.py Normal file
View file

@ -0,0 +1,10 @@
from injectable import inject
from app.core.core import WebhookProcessor
class AutowireSupport:
@staticmethod
def webhook_processor():
return inject(WebhookProcessor)