2019-11-01 12:13:48 -05:00

8 lines
145 B
JavaScript

const si = require('./lib/network');
async function test(){
const result = await si.networkInterfaces();
console.log(result);
}
test();