Add Django project

This commit is contained in:
Joakim Hellsén 2024-01-30 02:30:43 +01:00
commit a70ccca169
21 changed files with 3691 additions and 1 deletions

9
feeds/urls.py Normal file
View file

@ -0,0 +1,9 @@
"""URLs for the feeds app."""
from django.urls import path
from feeds.views import IndexView
urlpatterns = [
path("", IndexView.as_view(), name="index"),
]