"""Ross1000 URL configuration.

Registers the single Ross1000 export endpoint:
    GET /api/istat/ross1000/export/

This does NOT replace or modify any existing endpoints:
    /api/istat/export          — TXT export (untouched)
    /api/istat/xml/c59-export/ — C59 XML export (untouched)
    /api/istat/xml/guest-export/ — Guest XML export (untouched)
"""

from django.urls import path

from istat.ross1000.api.views import Ross1000ExportAPIView

urlpatterns = [
    path("export/", Ross1000ExportAPIView.as_view(), name="ross1000-export"),
]
