6 lines
145 B
Python
6 lines
145 B
Python
from django.urls import path
|
|
from .views import FeedContentView
|
|
|
|
urlpatterns = [
|
|
path("", FeedContentView.as_view(), name="feed-content"),
|
|
]
|