from django.urls import path

from istat.xml_export.api.views import (
    C59XmlExportAPIView,
    C59ZipExportAPIView,
    GuestXmlExportAPIView,
)


urlpatterns = [
    path("guest-export/", GuestXmlExportAPIView.as_view(), name="istat-xml-guest-export"),
    path("c59-export/", C59XmlExportAPIView.as_view(), name="istat-xml-c59-export"),
    path("c59-zip-export/", C59ZipExportAPIView.as_view(), name="istat-xml-c59-zip-export"),
]
