from django.urls import path
from service_report.views.service_report_views import ServiceReportView, ServiceReportDetailView


urlpatterns = [
    path("service/report/", ServiceReportView.as_view(), name="service-report-list-create"),
    path("service/report/<int:pk>/", ServiceReportDetailView.as_view(), name="service-report-detail"),
]