Skip to content

Instantly share code, notes, and snippets.

@mansha99
Created July 7, 2023 09:16
Show Gist options
  • Save mansha99/b43da84b992c23b02b08df7fdd1faee0 to your computer and use it in GitHub Desktop.
Save mansha99/b43da84b992c23b02b08df7fdd1faee0 to your computer and use it in GitHub Desktop.
urls.py
from django.urls import include, path
from .api import router
urlpatterns = [
path('api/v1/', include(router.urls)),
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment