summaryrefslogtreecommitdiff
path: root/src/lib/pgp/trust.ts
diff options
context:
space:
mode:
authorJoão Augusto Costa Branco Marado Torres <torres.dev@disroot.org>2025-07-06 15:10:35 -0300
committerJoão Augusto Costa Branco Marado Torres <torres.dev@disroot.org>2025-07-06 15:10:35 -0300
commit87df5a27cb34ada02f54dacf4299574f04038612 (patch)
treeedd286add16ec82bc4b8467566ede15a90883a39 /src/lib/pgp/trust.ts
parent04bcfc551e3f446d26358971115ac27e34f03e44 (diff)
fix: env name conflict
Signed-off-by: João Augusto Costa Branco Marado Torres <torres.dev@disroot.org>
Diffstat (limited to 'src/lib/pgp/trust.ts')
-rw-r--r--src/lib/pgp/trust.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/pgp/trust.ts b/src/lib/pgp/trust.ts
index 34d454b..a79a2b6 100644
--- a/src/lib/pgp/trust.ts
+++ b/src/lib/pgp/trust.ts
@@ -2,7 +2,7 @@ import type { Key } from "npm:openpgp@^6.1.1";
import { createKeysFromDir } from "./create.ts";
import type { AsyncYieldType } from "../../utils/iterator.ts";
import { equal, getCall } from "../../utils/anonymous.ts";
-import { env } from "../env.ts";
+import { env } from "../environment.ts";
let trusted:
| Iterable<AsyncYieldType<ReturnType<typeof createKeysFromDir>>>