blob: e4f1d6c63ecd478b4a16ab0576f3069de92333b4 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
from django_distill import distill_path
from .views import TimelineView
app_name = "timeline"
urlpatterns = [
distill_path("", TimelineView.as_view(), name="index"),
]
|