InfoTech-Backend/infotech/students/urls.py

13 lines
353 B
Python
Raw Normal View History

2023-03-21 21:49:26 +08:00
from django.urls import include, path
from rest_framework import routers
from . import views
router = routers.DefaultRouter()
router.register(r'students', views.StudentViewSet)
# Wire up our API using automatic URL routing.
# Additionally, we include login URLs for the browsable API.
urlpatterns = [
path('', include(router.urls)),
]