Files
Andros Fenollosa 7c60f060c8 Added feed content
2025-11-30 17:03:53 +01:00

7 lines
145 B
Python

from django.urls import path
from .views import FeedContentView
urlpatterns = [
path("", FeedContentView.as_view(), name="feed-content"),
]