Remove @std/dotenv

This commit is contained in:
Alex Gleason
2024-10-18 13:22:34 -05:00
parent 8944594c71
commit f6046c015b
3 changed files with 0 additions and 14 deletions

View File

@@ -1,6 +1,5 @@
import os from 'node:os';
import ISO6391, { LanguageCode } from 'iso-639-1';
import * as dotenv from '@std/dotenv';
import { getPublicKey, nip19 } from 'nostr-tools';
import { z } from 'zod';
import { decodeBase64 } from '@std/encoding/base64';
@@ -8,13 +7,6 @@ import { encodeBase64Url } from '@std/encoding/base64url';
import { getEcdsaPublicKey } from '@/utils/crypto.ts';
/** Load environment config from `.env` */
await dotenv.load({
export: true,
defaultsPath: null,
examplePath: null,
});
/** Application-wide configuration. */
class Conf {
private static _pubkey: string | undefined;