InfoTech-Backend/infotech/daytimes/urls.py

12 lines
351 B
Python
Raw Permalink Normal View History

2023-04-22 13:42:09 +08:00
from django.urls import include, path
from rest_framework import routers
from . import views
router = routers.DefaultRouter()
2023-04-22 14:07:08 +08:00
router.register(r'daytimes', views.DayTimeViewSet)
2023-04-22 13:42:09 +08:00
# Wire up our API using automatic URL routing.
# Additionally, we include login URLs for the browsable API.
urlpatterns = [
path('', include(router.urls)),
]