From f5e1412e2bfe5f29c0cf905c60829658bb5b1ddd Mon Sep 17 00:00:00 2001 From: lesion Date: Mon, 6 Jun 2022 16:56:24 +0200 Subject: [PATCH] enable cli account command --- server/cli.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/cli.js b/server/cli.js index 01e7b5c8..bec0cf8a 100755 --- a/server/cli.js +++ b/server/cli.js @@ -29,7 +29,7 @@ require('yargs') return absolute_config_path }}) .command(['start', 'run', '$0'], 'Start gancio', {}, start) - // .command(['accounts'], 'Manage accounts', accountsCLI) + .command(['accounts'], 'Manage accounts', accountsCLI) .help('h') .alias('h', 'help') .epilog('Made with ❤ by underscore hacklab - https://gancio.org')