membersystem/project/urls.py

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),
]