mirror of
https://gitlab.com/soapbox-pub/ditto.git
synced 2025-12-06 11:29:46 +00:00
9 lines
213 B
TypeScript
9 lines
213 B
TypeScript
import 'deno-safe-fetch/load';
|
|
|
|
import '@/precheck.ts';
|
|
import '@/sentry.ts';
|
|
import '@/nostr-wasm.ts';
|
|
import app from '@/app.ts';
|
|
import { Conf } from '@/config.ts';
|
|
|
|
Deno.serve({ port: Conf.port }, app.fetch);
|