Skip to content

Instantly share code, notes, and snippets.

@rashid2003
Created June 30, 2022 02:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rashid2003/2b2d7890b23fd6a5bd72c6505535f8dd to your computer and use it in GitHub Desktop.
Save rashid2003/2b2d7890b23fd6a5bd72c6505535f8dd to your computer and use it in GitHub Desktop.
const handler = (request: Request): Response => {
const body = 'Hello World\n';
return new Response(body, { status: 200 });
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment