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

View File

@@ -14,9 +14,10 @@ Including another URLconf
1. Import the include() function: from django.urls import include, path
2. Add a URL to urlpatterns: path('blog/', include('blog.urls'))
"""
from django.contrib import admin
from django.contrib import admin # type: ignore
from django.urls import path
urlpatterns = [
path('admin/', admin.site.urls),
path('', include('accounts.urls'))
]