forked from data.coop/membersystem
Mikkel Munch Mortensen
7f01d9a277
And move the to "parked_apps" directory, until we've decided what we want to do with them.
11 lines
198 B
Python
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),
|
|
]
|