16 lines
342 B
Go
16 lines
342 B
Go
package view
|
|
|
|
import (
|
|
"net/http"
|
|
"path/filepath"
|
|
|
|
"streifling.com/jason/cpolis/cmd/control"
|
|
)
|
|
|
|
func ShowRSS(c *control.CliArgs) http.HandlerFunc {
|
|
return func(w http.ResponseWriter, r *http.Request) {
|
|
w.Header().Add("Content-Disposition", "attachment; filename=\""+filepath.Base(c.RSSFile)+"\"")
|
|
http.ServeFile(w, r, c.RSSFile)
|
|
}
|
|
}
|