UNPKG
azure-iot-gateway-windows
Version:
latest (1.0.0)
1.0.0
Azure IoT Edge Core Runtime for Windows.
github.com/Azure/iot-edge
Azure/iot-edge
azure-iot-gateway-windows
/
cli.js
16 lines
(10 loc)
•
208 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/usr/bin/env node
(
function
(
) {
'use strict'
;
const
gw =
require
(
'./'
);
let
configPath =
null
;
if
(process.
argv
.
length
>=
3
) { configPath = process.
argv
[
2
]; } gw.
run
(configPath); })();