feat: Add RSS feed generation for channel messages and update route handling

This commit is contained in:
2026-03-10 00:23:42 +03:30
parent c538bfb799
commit 381cdd42aa
4 changed files with 112 additions and 3 deletions
+3
View File
@@ -4,6 +4,7 @@ import (
"tgss/internal/config"
"tgss/internal/handlers"
"tgss/internal/infra"
"tgss/internal/rss"
"tgss/internal/server"
"tgss/internal/telegram"
@@ -19,6 +20,8 @@ func main() {
handlers.NewChannelHandler,
handlers.NewAuthHandler,
rss.NewRSSGenerator,
),
telegram.Module,
fx.Invoke(server.RegisterRoutes),