Skip to content

Instantly share code, notes, and snippets.

@ManotLuijiu
Created December 11, 2023 09:58
Show Gist options
  • Save ManotLuijiu/5a7fdefd87a18e8d614647037e019833 to your computer and use it in GitHub Desktop.
Save ManotLuijiu/5a7fdefd87a18e8d614647037e019833 to your computer and use it in GitHub Desktop.
django_auth -> urls.py
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