transport-accessibility/transport_accessibility/pt_map/urls.py
Johannes Randerath c22049f499 Added documentation
- Using sphinx to documente the project
- Autodocumenting Python using numpy-style docstr and sphinx autodoc with napoleon
2024-06-03 20:29:28 +02:00

11 lines
197 B
Python

"""
Redirecting HTTP requests destined for the app pt_map to the correct views
"""
from django.urls import path
from . import views
urlpatterns = [
path("", views.index, name="index"),
]