9 lines
219 B
Python
9 lines
219 B
Python
|
|
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"),
|
||
|
|
]
|