Skip to content

Instantly share code, notes, and snippets.

@tamert
Created September 15, 2020 18:57
Show Gist options
  • Save tamert/7a7df81b31a4a43f6c038c386edf5620 to your computer and use it in GitHub Desktop.
Save tamert/7a7df81b31a4a43f6c038c386edf5620 to your computer and use it in GitHub Desktop.
urls.py
from django.urls import include, path
from rest_framework import routers
from views import CompaniesView
router = routers.DefaultRouter()
urlpatterns = [
path('companies', CompaniesView.as_view()),
path('', include(router.urls)),
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment