6 lines
119 B
Python
6 lines
119 B
Python
from django.urls import path, include
|
|
|
|
urlpatterns = [
|
|
path('web/api/', include('apps.product.web.api.v1.urls'))
|
|
]
|