membersystem/project/urls.py
Mikkel Munch Mortensen 7f01d9a277
Rip out existing custom apps
And move the to "parked_apps" directory, until we've decided what we
want to do with them.
2021-02-09 22:00:55 +01:00

11 lines
198 B
Python

"""URLs for the membersystem"""
from django.contrib import admin
from django.urls import path
from . import views
urlpatterns = [
path("", views.index),
path("admin/", admin.site.urls),
]