ba-thesis/app/core/urls.py

8 lines
181 B
Python
Raw Normal View History

2023-07-21 09:57:46 +01:00
from django.contrib import admin
from django.urls import include, path
urlpatterns = [
path('', include('medwings.urls')),
2023-07-21 18:08:48 +01:00
path('auth/', include('authentication.urls')),
2023-07-21 09:57:46 +01:00
]