generated from erangel1/generic-template
8 lines
120 B
Python
8 lines
120 B
Python
from django.urls import include, path
|
|
|
|
from .views import router
|
|
|
|
urlpatterns = [
|
|
path("", include(router.urls)),
|
|
]
|