mirror of
https://github.com/tanrax/org-social-relay
synced 2026-01-10 06:53:33 +01:00
7 lines
133 B
Python
7 lines
133 B
Python
from django.urls import path
|
|
from .views import LatestPostsFeed
|
|
|
|
urlpatterns = [
|
|
path("", LatestPostsFeed(), name="rss_feed"),
|
|
]
|