sys.php 1.0 KB

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