10 lines
223 B
TypeScript
10 lines
223 B
TypeScript
import {Robot} from "./Robot";
|
|
|
|
export class RobotManage {
|
|
|
|
async addOne({host, room}: { host: string, room: string }) {
|
|
let robot = new Robot(host, room);
|
|
let sessionId = await robot.connect();
|
|
}
|
|
}
|