We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0843355 commit 0db1374Copy full SHA for 0db1374
1 file changed
src/cli/cli.js
@@ -16,5 +16,9 @@ program
16
myLibraryFunction(options.lightning_channel); // Call the library function
17
});
18
19
+ // Define the library function
20
+ function myLibraryFunction(option) {
21
+ console.log('Library function called with option:', option);
22
+}
23
program.parse(process.argv);
24
0 commit comments