7 lines
99 B
Python
7 lines
99 B
Python
from django.urls import include, path
|
|
|
|
|
|
urlpatterns = [
|
|
path('', include('orchestra.urls')),
|
|
]
|