first commit

This commit is contained in:
编码猿
2024-09-27 01:26:21 +08:00
commit 63459fdc40
12 changed files with 148 additions and 0 deletions

14
index.js Normal file
View File

@@ -0,0 +1,14 @@
const config = require("./config");
const utils= require("./utils");
for (const key in config.shellCoordinate.Fabulous) {
let shell = config.startShell(key, config.shellCoordinate.Fabulous[key])
console.log(shell)
setInterval(async ()=> {
console.log(await utils.execShell(shell))
},1500)
}
// utils.CheckInstallAdb().then(res => {
// console.log(res)
// })