Created
June 3, 2022 23:49
-
-
Save ilyes-d/ffcc4903d7878f1fafaa63d5edcc9790 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from django.contrib import admin | |
from django.urls import path, include | |
urlpatterns = [ | |
path('admin/', admin.site.urls), | |
path('', include('accounts.urls')), # New | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment