diff options
author | João Augusto Costa Branco Marado Torres <torres.dev@disroot.org> | 2025-07-06 15:10:35 -0300 |
---|---|---|
committer | João Augusto Costa Branco Marado Torres <torres.dev@disroot.org> | 2025-07-06 15:10:35 -0300 |
commit | 87df5a27cb34ada02f54dacf4299574f04038612 (patch) | |
tree | edd286add16ec82bc4b8467566ede15a90883a39 /src/lib/pgp/trust.ts | |
parent | 04bcfc551e3f446d26358971115ac27e34f03e44 (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.ts | 2 |
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>>> |