10 lines
323 B
TypeScript
10 lines
323 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 "tweet-to-image" up and running!`)
|
|
|
|
Deno.serve(handler)
|