sys.php 1.2 KB

12345678910111213141516171819202122232425262728293031
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | ThinkAdmin
  4. // +----------------------------------------------------------------------
  5. // | 版权所有 2014~2022 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
  6. // +----------------------------------------------------------------------
  7. // | 官方网站: https://thinkadmin.top
  8. // +----------------------------------------------------------------------
  9. // | 开源协议 ( https://mit-license.org )
  10. // | 免费声明 ( https://thinkadmin.top/disclaimer )
  11. // +----------------------------------------------------------------------
  12. // | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
  13. // | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
  14. // +----------------------------------------------------------------------
  15. use app\wechat\command\Auto;
  16. use app\wechat\command\Fans;
  17. use app\wechat\service\AutoService;
  18. use think\admin\Library;
  19. use think\Console;
  20. if (Library::$sapp->request->isCli()) {
  21. Console::starting(function (Console $console) {
  22. $console->addCommands([Fans::class, Auto::class]);
  23. });
  24. } else {
  25. Library::$sapp->event->listen('WechatFansSubscribe', function ($openid) {
  26. AutoService::register($openid);
  27. });
  28. }