InfoTech-Backend/infotech/professors/urls.py

13 lines
357 B
Python
Raw Permalink Normal View History

from django.urls import include, path
from rest_framework import routers
from . import views
router = routers.DefaultRouter()
router.register(r'professors', views.ProfessorViewSet)
# Wire up our API using automatic URL routing.
# Additionally, we include login URLs for the browsable API.
urlpatterns = [
path('', include(router.urls)),
]