mirror of
https://github.com/lemeow125/Borrowing-TrackerBackend.git
synced 2024-11-17 06:19:26 +08:00
10 lines
232 B
Python
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)),
|
|
]
|