From e6cdb858b94c2752b4ccbd2340471be9835b47e5 Mon Sep 17 00:00:00 2001 From: Angelo Date: Fri, 17 Nov 2023 21:33:16 +0100 Subject: [PATCH] Fix import path in index.ts --- src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.ts b/src/index.ts index fb5d662..923f597 100644 --- a/src/index.ts +++ b/src/index.ts @@ -8,7 +8,7 @@ import { decrypt, encrypt } from './lib/encryption.js' import { fromBase58, toBase58 } from './lib/base58.js' import ncp from 'copy-paste' import untildify from 'untildify' -import { fetchCommand } from 'lib/command.js' +import { fetchCommand } from './lib/command.js' const program = new Command().name('envshare-cli').version('1.0.0')