This repository has been archived on 2022-05-05. You can view files and clone it, but cannot push or open issues or pull requests.
userausfall/userausfall/urls.py

8 lines
183 B
Python
Raw Normal View History

2021-04-12 09:55:30 +02:00
from django.contrib import admin
2021-10-21 09:58:18 +02:00
from django.urls import include, path
2021-04-12 09:55:30 +02:00
urlpatterns = [
2021-10-21 09:58:18 +02:00
path("admin/", admin.site.urls),
path("api/", include("userausfall.rest_api.urls")),
2021-04-12 09:55:30 +02:00
]