Created Accounts App

This commit is contained in:
2025-01-17 17:02:20 +01:00
parent 3b94864f41
commit f6b6813924
9 changed files with 28 additions and 1 deletions

6
core/accounts/urls.py Normal file
View File

@@ -0,0 +1,6 @@
from django.urls import path # type: ignore
from . import views
urlpatterns = [
path('', views.home)
]