Skip to content

Instantly share code, notes, and snippets.

@ChristianOConnor
Created April 25, 2022 00:59
Show Gist options
  • Save ChristianOConnor/7b2ab85a888feb05692794349c00d49f to your computer and use it in GitHub Desktop.
Save ChristianOConnor/7b2ab85a888feb05692794349c00d49f to your computer and use it in GitHub Desktop.
Sanitized Cloudflare Worker Tweet Through API Example (index.ts)
import { handleRequest } from './handler'
addEventListener('fetch', (event) => {
event.respondWith(handleRequest(event.request))
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment