// Cloudflare Worker — displays GARLAND ANGLIN with live Central Time clock
// Deploy with: wrangler deploy
const HTML = `
Garland Anglin
GARLAND ANGLIN
`;
export default {
async fetch(request) {
return new Response(HTML, {
headers: {
'Content-Type': 'text/html; charset=utf-8',
'Cache-Control': 'public, max-age=300',
},
});
},
};