initial commit

This commit is contained in:
Danny Morabito 2025-08-05 23:47:38 +02:00
commit 65d9eca142
Signed by: dannym
GPG key ID: 7CC8056A5A04557E
8 changed files with 292 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)