Files
qivip/core/accounts/urls.py
2025-01-17 17:02:20 +01:00

6 lines
107 B
Python

from django.urls import path # type: ignore
from . import views
urlpatterns = [
path('', views.home)
]