chore: init saasshop repo + sql migrations runner + gitee go

This commit is contained in:
萝卜
2026-03-10 11:31:02 +00:00
commit 50f15cdea8
210 changed files with 29534 additions and 0 deletions

View 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' => '微信小程序接口占位已预留',
]);
}
}

View 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' => '微信公众号接口占位已预留',
]);
}
}