export default { async fetch(request, env) { const TELEGRAM_URL = env.TELEGRAM_URL || "https://t.me/otpocket_bot"; const html = ` Web temporarily unavailable
Service status

Web temporarily unavailable

Our website is currently unavailable. Please use our Telegram bot while we restore service.

Open Telegram bot ${TELEGRAM_URL}
`; return new Response(html, { status: 503, headers: { "content-type": "text/html; charset=UTF-8", "cache-control": "no-store, max-age=0", }, }); }, };