UNPKG
scutum
Version:
latest (0.0.2)
0.0.2
Another OpenPGP command line tool like GPG.
github.com/neoatlantis/scutum
neoatlantis/scutum
scutum
/
scutum
/
subcommands
/
version.js
12 lines
(8 loc)
•
188 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
require
(
"../router"
).register(
"version"
, subcommand ); async
function
subcommand
(args, options)
{ const {
stdin
,
stdout
,
stderr
} = options;
stdout
(
"scutum 0.0.2\n"
); }