1234567891011121314151617 |
- <?php
- /**
- * 模块接口
- *
- * @author 泸州市音速科技有限公司
- * @url https://www.rryong.cn
- */
- error_reporting(0);
- defined('IN_IA') or exit('Access Denied');
- class Wike_chatgptModuleWxapp extends WeModuleWxapp
- {
- public function __call()
- {
- header("Location:/addons/wike_chatgpt/public/index.php");
- }
- }
|