Skip to content

Instantly share code, notes, and snippets.

@Kristian-Roopnarine
Created February 10, 2020 21:15
Show Gist options
  • Save Kristian-Roopnarine/a48f254c8cc45a9e2c1e7216003b79f6 to your computer and use it in GitHub Desktop.
Save Kristian-Roopnarine/a48f254c8cc45a9e2c1e7216003b79f6 to your computer and use it in GitHub Desktop.
from django.contrib import admin
from django.urls import path
from rest_framework import routers
from .api import ProjectInfoViewSet
router = routers.DefaultRouter()
router.register('api/projects',ProjectInfoViewSet)
urlpatterns = router.urls
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment