2025-05-04 15:24:28 +03:30
|
|
|
from django.urls import path, include
|
|
|
|
|
from rest_framework.routers import DefaultRouter
|
|
|
|
|
|
|
|
|
|
router = DefaultRouter()
|
|
|
|
|
router.register('', '', basename='')
|
|
|
|
|
|
|
|
|
|
app_name = "authentication"
|
|
|
|
|
urlpatterns = [
|
|
|
|
|
path('api/v1/', include('apps.authentication.api.v1.urls')),
|
2025-09-07 15:17:32 +03:30
|
|
|
path('pos/', include('apps.authentication.pos.api.v1.urls')),
|
2025-05-04 15:24:28 +03:30
|
|
|
]
|