- Using sphinx to documente the project - Autodocumenting Python using numpy-style docstr and sphinx autodoc with napoleon
11 lines
227 B
Python
11 lines
227 B
Python
"""
|
|
URL configuration for transport_accessibility project.
|
|
"""
|
|
from django.contrib import admin
|
|
from django.urls import path, include
|
|
|
|
urlpatterns = [
|
|
path('admin/', admin.site.urls),
|
|
path('', include("pt_map.urls"))
|
|
]
|