7 lines
222 B
TypeScript
7 lines
222 B
TypeScript
import { main } from "./src/main.ts";
|
|
|
|
let relay = process.env.RELAY_URL ?? Bun.argv[Bun.argv.length - 1];
|
|
if (!relay?.startsWith("wss://") && !relay?.startsWith("ws://"))
|
|
relay = "wss://relay.arx-ccn.com";
|
|
|
|
main(relay)
|