from django.urls import path from .api import CongressScheduleXMLView, HackertoursMarkdownView urlpatterns = [ path( 'api/v1/event///schedule.xml', CongressScheduleXMLView.as_view(), name='schedule-xml', ), path( 'api/v1/event///schedule.xml', CongressScheduleJSONView.as_view(), name='schedule-xml', ), path( 'api/v1/event///schedule.md', HackertoursMarkdownView.as_view(), name='schedule-md', ), ]