chore: init saasshop repo + sql migrations runner + gitee go
This commit is contained in:
18
app/Http/Controllers/Wechat/MiniProgramController.php
Normal file
18
app/Http/Controllers/Wechat/MiniProgramController.php
Normal file
@@ -0,0 +1,18 @@
|
||||
<?php
|
||||
|
||||
namespace App\Http\Controllers\Wechat;
|
||||
|
||||
use App\Http\Controllers\Controller;
|
||||
use Illuminate\Http\JsonResponse;
|
||||
|
||||
class MiniProgramController extends Controller
|
||||
{
|
||||
public function index(): JsonResponse
|
||||
{
|
||||
return response()->json([
|
||||
'ok' => true,
|
||||
'channel' => 'wechat_mini',
|
||||
'message' => '微信小程序接口占位已预留',
|
||||
]);
|
||||
}
|
||||
}
|
||||
18
app/Http/Controllers/Wechat/MpController.php
Normal file
18
app/Http/Controllers/Wechat/MpController.php
Normal file
@@ -0,0 +1,18 @@
|
||||
<?php
|
||||
|
||||
namespace App\Http\Controllers\Wechat;
|
||||
|
||||
use App\Http\Controllers\Controller;
|
||||
use Illuminate\Http\JsonResponse;
|
||||
|
||||
class MpController extends Controller
|
||||
{
|
||||
public function index(): JsonResponse
|
||||
{
|
||||
return response()->json([
|
||||
'ok' => true,
|
||||
'channel' => 'wechat_mp',
|
||||
'message' => '微信公众号接口占位已预留',
|
||||
]);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user