14 lines
195 B
JavaScript
14 lines
195 B
JavaScript
require("../src/init")
|
|
const Remote = require("../src/remote")
|
|
|
|
|
|
async function main(){
|
|
const remote = new Remote();
|
|
await remote.init()
|
|
|
|
console.log(await remote.check())
|
|
}
|
|
|
|
|
|
main()
|