mirror of
https://github.com/cloudflare/wrangler-action.git
synced 2024-11-22 10:03:24 +01:00
21 lines
385 B
TypeScript
21 lines
385 B
TypeScript
|
type Env = {
|
||
|
SECRET1?: string;
|
||
|
SECRET2?: string;
|
||
|
};
|
||
|
|
||
|
export default {
|
||
|
fetch(request: Request, env: Env) {
|
||
|
const url = new URL(request.url);
|
||
|
|
||
|
if (url.pathname === "/secret") {
|
||
|
const { SECRET1 = "", SECRET2 = "" } = env;
|
||
|
return new Response(`${SECRET1} ${SECRET2}`);
|
||
|
}
|
||
|
|
||
|
return Response.json({
|
||
|
...request,
|
||
|
headers: Object.fromEntries(request.headers),
|
||
|
});
|
||
|
},
|
||
|
};
|