membersystem/project/urls.py

8 lines
150 B
Python
Raw Normal View History

2018-06-23 13:01:13 +00:00
"""URLs for the membersystem"""
from django.contrib import admin
from django.urls import path
2018-06-23 11:00:26 +00:00
urlpatterns = [
path('admin/', admin.site.urls),
]