# Copyright: (c) OpenSpug Organization. https://github.com/openspug/spug # Copyright: (c) # Released under the MIT License. from django.conf.urls import url from django.urls import path from .views import * urlpatterns = [ url(r'^$', Schedule.as_view()), path('/', ScheduleInfo.as_view()), ]