Add empty Go project
This commit is contained in:
parent
b4c66ecf3c
commit
3445466197
30 changed files with 19 additions and 4183 deletions
|
|
@ -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"),
|
||||
]
|
||||
Loading…
Add table
Add a link
Reference in a new issue