forked from data.coop/membersystem
8 lines
150 B
Python
8 lines
150 B
Python
"""URLs for the membersystem"""
|
|
from django.contrib import admin
|
|
from django.urls import path
|
|
|
|
urlpatterns = [
|
|
path('admin/', admin.site.urls),
|
|
]
|