UNPKG
@sourceregistry/node-ovsdb
Version:
latest (1.0.6)
1.0.6
1.0.5
1.0.4
1.0.3
1.0.2
1.0.1
1.0.0
TypeScript OVSDB client for Node.js
github.com/SourceRegistry/node-ovsdb
SourceRegistry/node-ovsdb
@sourceregistry/node-ovsdb
/
bin
/
ovsdb-generate.cjs
8 lines
(5 loc)
•
155 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
#!/usr/bin/env node
const
{runCli} =
require
(
"../dist-cli/cli.js"
);
void
runCli
(process.
argv
.
slice
(
2
)).
then
(
(
code
) =>
{ process.
exitCode
= code; });