Fixed RSS

This commit is contained in:
Atridad Lahiji 2024-04-16 00:09:09 -06:00
parent 96eeb65d7c
commit d192e745c5
No known key found for this signature in database
2 changed files with 2 additions and 2 deletions

View file

@ -1,4 +1,4 @@
package pages
package api
import (
"io/fs"

View file

@ -69,7 +69,6 @@ func main() {
e.GET("/testimonials", pages.Testimonials)
e.GET("/blog", pages.Blog)
e.GET("/post/:post", pages.Post)
e.GET("/rss", pages.RSSFeedHandler)
e.GET("/tools", pages.Tools)
e.GET("/tools/resize", pages.Resize)
e.GET("/tools/ssedemo", pages.SSEDemo)
@ -79,6 +78,7 @@ func main() {
apiGroup.GET("/ping", api.Ping)
apiGroup.GET("/authed/ping", api.Authed)
apiGroup.POST("/pay", api.Pay)
apiGroup.GET("/rss", api.RSSFeedHandler)
apiGroup.GET("/post/copy", api.PostCopy)
apiGroup.GET("/sse", func(c echo.Context) error {