sys.php 1.1 KB

12345678910111213141516171819202122232425262728
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | ThinkAdmin
  4. // +----------------------------------------------------------------------
  5. // | 版权所有 2014~2019 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
  6. // +----------------------------------------------------------------------
  7. // | 官方网站: http://demo.thinkadmin.top
  8. // +----------------------------------------------------------------------
  9. // | 开源协议 ( https://mit-license.org )
  10. // +----------------------------------------------------------------------
  11. // | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
  12. // | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
  13. // +----------------------------------------------------------------------
  14. use think\Console;
  15. use think\facade\Route;
  16. // 注册接口路由
  17. Route::rule('wechat/api.js', 'wechat/api.js/index');
  18. // 注册系统指令
  19. Console::addDefaultCommands([
  20. 'app\wechat\command\fans\FansAll',
  21. 'app\wechat\command\fans\FansTags',
  22. 'app\wechat\command\fans\FansList',
  23. 'app\wechat\command\fans\FansBlack',
  24. ]);