UNPKG
@randombenj/dbsync
Version:
beta (1.10.2-alpha.0)
latest (1.10.2-alpha.0)
unstable (1.10.2-alpha.41)
1.10.2-alpha.42
1.10.2-alpha.41
1.10.2-alpha.38
1.10.2-alpha.35
1.10.2-alpha.0
Display, search and copy LXD-images using a web interface.
github.com/Roche/lxdhub
Roche/lxdhub
@randombenj/dbsync
/
src
/
cli.ts
11 lines
(7 loc)
•
259 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
#!/usr/bin/env node
import
*
as
Path
from
'path'
;
import
{
CLI
,
Shim
}
from
'clime'
;
import
'./cli/commands/start/default'
;
const
cli =
new
CLI
(
'lxdhub-dbsync'
,
Path
.
join
(__dirname,
'cli/commands'
));
const
shim =
new
Shim
(cli); shim.
execute
(process.
argv
);