21 lines
508 B
JavaScript
21 lines
508 B
JavaScript
import './config/init.js'
|
|
import ListenerLoader from './listener/loader.js'
|
|
import { Client } from 'icqq'
|
|
import cfg from './config/config.js'
|
|
|
|
export default class Yunzai extends Client {
|
|
// eslint-disable-next-line no-useless-constructor
|
|
constructor (uin, conf) {
|
|
super(uin, conf)
|
|
}
|
|
|
|
/** 登录机器人 */
|
|
static async run () {
|
|
const bot = new Yunzai(cfg.bot)
|
|
/** 加载icqq事件监听 */
|
|
await ListenerLoader.load(bot)
|
|
await bot.login(cfg.qq, cfg.pwd)
|
|
return bot
|
|
}
|
|
}
|