7 lines
186 B
Python
7 lines
186 B
Python
from django.urls import path, include
|
|
|
|
urlpatterns = [
|
|
# path('web/', include('apps.notification.web.api.v1.urls')),
|
|
path('pos/', include('apps.notification.pos.api.v1.urls'))
|
|
]
|