ditto/src/server.ts

8 lines
181 B
TypeScript
Raw Normal View History

import '@/precheck.ts';
import '@/sentry.ts';
2024-04-30 23:43:53 +00:00
import '@/nostr-wasm.ts';
import app from '@/app.ts';
import { Conf } from '@/config.ts';
2023-03-05 01:55:28 +00:00
2024-04-24 16:26:56 +00:00
Deno.serve({ port: Conf.port }, app.fetch);