2018-10-29 11:47:58 +08:00

26 lines
665 B
PHP
Executable File
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
/**
* Created by PhpStorm.
* User: jerry
* Date: 2018/4/12
* Time: 10:32
*/
//加载需要优先加载的文件
require_once(WORKING_DIR."src/cqbot/mods/ModBase.php");
require_once(WORKING_DIR."src/cqbot/item/User.php");
require_once(WORKING_DIR."src/cqbot/event/Event.php");
loadAllClass(WORKING_DIR."src/cqbot/");
//加载外部模块
require_once(WORKING_DIR."src/extension/PHPMailer.phar");
/**
* 下面是不能在loader里面加载的php文件以下文件更新时必须停止脚本后再重启才能重新加载
* start.php
* src/cqbot/Framework.php
* src/cqbot/Console.php
* src/cqbot/utils/Buffer.php
* src/cqbot/ErrorStatus.php
*/