|
@@ -1,7 +1,10 @@
|
|
|
<?php
|
|
|
|
|
|
use Illuminate\Support\Facades\Route;
|
|
|
+use Modules\WechatPlatform\Http\KFMessageController;
|
|
|
|
|
|
-Route::prefix('wechat')->group(function(){
|
|
|
-
|
|
|
+Route::prefix('wechatPlatform')->group(function(){
|
|
|
+ Route::prefix('kfMessage')->group(function(){
|
|
|
+ Route::get('list', [KFMessageController::class, 'list']);
|
|
|
+ });
|
|
|
});
|