From eea4d4f3b9e11f1d09e950f5b728b97b96ec16e0 Mon Sep 17 00:00:00 2001 From: tadeas Date: Tue, 16 Jul 2024 05:59:30 +0200 Subject: [PATCH] add todos --- main.go | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/main.go b/main.go index 831b524..cb35404 100644 --- a/main.go +++ b/main.go @@ -325,3 +325,27 @@ func fetchTrendingCategories(c *gin.Context) { c.JSON(http.StatusOK, trendingTopics) } + +// TODO: add endpoints for fetching news by keyword +// assignees: tadeasf +// labels: endpoint, feature, enhancement + +// TODO: add endpoints for fetching news by search query +// assignees: tadeasf +// labels: endpoint, feature, enhancement + +// TODO: add endpoints for fetching news by trending topics +// assignees: tadeasf +// labels: endpoint, feature, enhancement + +// TODO: add endpoints for fetching news by trending categories +// assignees: tadeasf +// labels: endpoint, feature, enhancement + +// TODO: add scheduling via background cronjob or something like that to continuously pull new articles +// assignees: tadeasf +// labels: enhancement, feature + +// TODO: sentiment analysis, topics and keywords extraction +// assignees: tadeasf +// labels: feature, enhancement