symposion_app/pinaxcon/streaming/urls.py

9 lines
219 B
Python
Raw Permalink Normal View History

2024-04-16 09:10:03 +10:00
from django.conf.urls import url
from pinaxcon.streaming import views
urlpatterns = [
url(r"^$", views.streaming_view, name="streaming_home"),
url(r'^feeds$', views.streaming_feeds, name="streaming_feeds"),
2024-04-16 09:10:03 +10:00
]