134651c8f7
* adds new app to project * adds relation between User model and new APIUserToken model * adds first implementation for GET of intervention * adds basic code layout for future extension by having new versions
14 lines
302 B
Python
14 lines
302 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, include
|
|
|
|
app_name = "api"
|
|
|
|
urlpatterns = [
|
|
path("v1/", include("api.urls.v1.urls")),
|
|
] |