Val Town is a social website to write and deploy JavaScript.
Build APIs and schedule functions from your browser.
1
2
3
4
5
6
7
import { internalStreamThesephistComRSS } from "https://esm.town/v/coofdy/internalStreamThesephistComRSS";
export let streamThesaphistRSS = async (req, res) => {
res.set("Content-type", "application/rss+xml");
res.set("Cache-Control", "max-age=14400");
res.send(await internalStreamThesephistComRSS);
};
October 23, 2023