1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/** @jsxImportSource npm:hono/jsx **/
import { extractValInfo } from "https://esm.town/v/pomdtr/extractValInfo";
import { Hono } from "npm:hono";
const app = new Hono();
const self = extractValInfo(import.meta.url);
app.get("/", (c) => {
return c.html(
<html>
<head>
<link rel="authorization_endpoint" href={self.httpEndpoint} />
</head>
</html>,
);
});
export default app.fetch;