Add empty Go project

This commit is contained in:
Joakim Hellsén 2024-02-03 02:21:51 +01:00
commit 3445466197
30 changed files with 19 additions and 4183 deletions

View file

@ -1,22 +0,0 @@
"""URLs for the feeds app."""
from django.urls import path
from feeds.views import APIView, DonateView, FeedsView, IndexView, add_feeds, upload_opml
app_name = "feeds"
urlpatterns = [
# /
path("", IndexView.as_view(), name="index"),
# /feeds
path("feeds", FeedsView.as_view(), name="feeds"),
# /add
path("add", add_feeds, name="add"),
# /api
path("api", APIView.as_view(), name="api"),
# /donate
path("donate", DonateView.as_view(), name="donate"),
# /upload_opml
path("upload_opml", upload_opml, name="upload_opml"),
]