transport-accessibility/transport_accessibility/api/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

8 lines
173 B
Python

from django.urls import path
from . import views
urlpatterns = [
path("models/", views.data, name="data"),
path("timetable/", views.timetable, name="timetable"),
]