mirror of
https://github.com/hzrd149/nsite-gateway.git
synced 2025-06-23 20:05:03 +00:00
10 lines
402 B
TypeScript
10 lines
402 B
TypeScript
![]() |
import "dotenv/config";
|
||
|
|
||
|
const NOSTR_RELAYS = process.env.NOSTR_RELAYS?.split(",") ?? [];
|
||
|
const BLOSSOM_SERVERS = process.env.BLOSSOM_SERVERS?.split(",") ?? [];
|
||
|
|
||
|
if (NOSTR_RELAYS.length === 0) throw new Error("Requires at least one relay in NOSTR_RELAYS");
|
||
|
if (BLOSSOM_SERVERS.length === 0) throw new Error("Requires at least one server in BLOSSOM_SERVERS");
|
||
|
|
||
|
export { NOSTR_RELAYS, BLOSSOM_SERVERS };
|