Files

7 lines
186 B
Python
Raw Permalink Normal View History

from django.urls import path, include
urlpatterns = [
# path('web/', include('apps.notification.web.api.v1.urls')),
2025-10-06 14:02:12 +03:30
path('pos/', include('apps.notification.pos.api.v1.urls'))
]