Borrowing-TrackerBackend/equipment_tracker/breakages/urls.py

10 lines
232 B
Python

from django.urls import include, path
from rest_framework import routers
from . import views
router = routers.DefaultRouter()
router.register(r'', views.BreakageReportViewSet)
urlpatterns = [
path('', include(router.urls)),
]