add: add atmos callback api

This commit is contained in:
behruz-dev
2025-08-27 13:13:19 +05:00
parent 3923644f77
commit e4ff61c4bd
11 changed files with 97 additions and 0 deletions

View File

@@ -28,6 +28,7 @@ INSTALLED_APPS = [
'core.apps.accounts',
'core.apps.orders',
'core.apps.common',
'core.apps.payment',
]
MIDDLEWARE = [

View File

@@ -32,6 +32,7 @@ urlpatterns = [
path('accounts/', include('core.apps.accounts.urls')),
path('common/', include('core.apps.common.urls')),
path('orders/', include('core.apps.orders.urls')),
path('payment/', include('core.apps.payment.urls')),
]
))
]