We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7b5269c commit 148b4c3Copy full SHA for 148b4c3
index.js
@@ -21,6 +21,13 @@ const load = async () => {
21
// start the menu
22
new Menu(cliWallet, cliConnection);
23
};
24
+
25
+const help = async () => {
26
+ clear();
27
+ console.log("Squads CLI is in alpha, more commands and options are in progress.")
28
+ console.log("For more information, visit https://github.com/squads-protocol/squads-cli");
29
+};
30
31
// console.log(process.argv[2]);
32
const option = process.argv[2];
33
switch(option){
@@ -29,6 +36,14 @@ switch(option){
36
console.log("Squads CLI version: " + pjson.version);
37
break;
38
39
+ case "-h":
40
+ help();
41
+ break;
42
43
+ case "--help":
44
45
46
47
default:
48
clear();
34
49
load();
0 commit comments