transport-accessibility/transport_accessibility/pt_map/urls.py
Johannes Randerath 80197208f8 PUT, DELETE and address Changes
- Added PUT, PATCH and DELETE to modify data in the database.
- refactored modules
- completed docstrings
- data is now served via api/ and web pages via /
2024-06-20 23:25:33 +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"),
]