konova/api/urls/v1/urls.py
mpeltriaux 0c35e79d04 #31 API basic implementation Intervention fetch
* enhances intervention fetching and serialization
2022-01-21 16:29:59 +01:00

16 lines
392 B
Python

"""
Author: Michel Peltriaux
Organization: Struktur- und Genehmigungsdirektion Nord, Rhineland-Palatinate, Germany
Contact: michel.peltriaux@sgdnord.rlp.de
Created on: 21.01.22
"""
from django.urls import path
from api.views.v1.intervention import APIInterventionViewV1
app_name = "v1"
urlpatterns = [
path("intervention/<id>", APIInterventionViewV1.as_view(), name="intervention"),
]