9 lines
162 B
Python
9 lines
162 B
Python
from django.urls import include, path
|
|
from rest_framework import routers
|
|
|
|
router = routers.DefaultRouter()
|
|
|
|
urlpatterns = [
|
|
path('', include(router.urls)),
|
|
]
|