initial commit

This commit is contained in:
Danny Morabito 2025-08-05 23:48:43 +02:00
commit 7ce36dfb37
Signed by: dannym
GPG key ID: 7CC8056A5A04557E
8 changed files with 298 additions and 0 deletions

7
index.ts Normal file
View file

@ -0,0 +1,7 @@
import { main } from "./src/main.ts";
let relay = process.env.RELAY_URL ?? Bun.argv[Bun.argv.length - 1];
if (!relay?.startsWith("wss://"))
relay = "wss://relay.arx-ccn.com";
main(relay)