Created
December 11, 2023 09:58
-
-
Save ManotLuijiu/5a7fdefd87a18e8d614647037e019833 to your computer and use it in GitHub Desktop.
django_auth -> urls.py
This file contains hidden or 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("api/", include("djoser.urls")), | |
path("api/", include("users.urls")), | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment