From 5566b648d3f33204dfdf7b13b4c5f2e5d450ab0c Mon Sep 17 00:00:00 2001 From: Chris Duncan Date: Wed, 5 Aug 2026 16:17:53 -0700 Subject: [PATCH] Simplify export barrel. --- src/lib/crypto/index.ts | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/src/lib/crypto/index.ts b/src/lib/crypto/index.ts index 3908f0a..07a2b5a 100644 --- a/src/lib/crypto/index.ts +++ b/src/lib/crypto/index.ts @@ -1,9 +1,7 @@ //! SPDX-FileCopyrightText: 2025 Chris Duncan //! SPDX-License-Identifier: GPL-3.0-or-later -import { Bip39 } from './bip39' -import { Bip44 } from './bip44' -import { Blake2b } from './blake2b' -import { WalletAesGcm } from './wallet-aes-gcm' - -export { Bip39, Bip44, Blake2b, WalletAesGcm } +export { Bip39 } from './bip39' +export { Bip44 } from './bip44' +export { Blake2b } from './blake2b' +export { WalletAesGcm } from './wallet-aes-gcm' -- 2.52.0