Files
2025-05-28 09:55:51 +08:00

10 lines
334 B
TypeScript

// Follow this setup guide to integrate the Deno language server with your editor:
// https://deno.land/manual/getting_started/setup_your_environment
// This enables autocomplete, go to definition, etc.
import { handler } from './handler.tsx'
console.log(`Function "og-image-with-storage-cdn" up and running!`)
Deno.serve(handler)