UNPKG

azure-iot-gateway-windows

Version:

Azure IoT Edge Core Runtime for Windows.

16 lines (10 loc) 208 B
#!/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); })();