Get rid of rss

This commit is contained in:
2024-10-27 13:29:58 +01:00
parent 8ed0676e51
commit 0b9bae3bf8
4 changed files with 0 additions and 30 deletions

View File

@ -1,17 +0,0 @@
package calls
import (
"net/http"
b "streifling.com/jason/cpolis/cmd/backend"
)
func ServeRSS(c *b.Config) http.HandlerFunc {
return func(w http.ResponseWriter, r *http.Request) {
if !tokenIsVerified(w, r, c) {
return
}
http.ServeFile(w, r, c.RSSFile)
}
}