starshard/peafowl
Template
1
Fork 0
mirror of https://github.com/starshardstudio/peafowl.git synced 2025-02-16 12:43:59 +00:00
peafowl/_run.ts

7 lines
102 B
TypeScript
Raw Normal View History

2024-06-16 13:49:13 +02:00
import {default as site} from "./_config.ts"
Deno.serve({
port: 8080,
2024-10-10 01:52:01 +02:00
handler: site.fetch
2024-06-16 13:49:13 +02:00
})