10 lines
140 B
Python
10 lines
140 B
Python
|
|
from django.urls import path, include
|
|
|
|
from .routers import router
|
|
|
|
app_name = "api"
|
|
urlpatterns = [
|
|
path("", include(router.urls)),
|
|
]
|