2022-01-21 15:26:08 +01:00
|
|
|
"""
|
|
|
|
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
|
|
|
|
|
2022-01-21 16:15:16 +01:00
|
|
|
from api.views.v1.intervention import APIInterventionViewV1
|
2022-01-21 15:26:08 +01:00
|
|
|
|
2022-01-21 16:15:16 +01:00
|
|
|
app_name = "v1"
|
2022-01-21 15:26:08 +01:00
|
|
|
urlpatterns = [
|
2022-01-21 16:29:59 +01:00
|
|
|
path("intervention/<id>", APIInterventionViewV1.as_view(), name="intervention"),
|
2022-01-21 15:26:08 +01:00
|
|
|
]
|