from django.urls import path
from .views import ReporteTicketAPIView

urlpatterns = [
    path('reporte_ticket/', ReporteTicketAPIView.as_view(), name='reporte_ticket'),
]
