文本聊天已完成

This commit is contained in:
2025-06-26 15:41:29 +08:00
parent 9f0ef4cc26
commit 16e028e50e
14 changed files with 574 additions and 450 deletions

View File

@@ -2,9 +2,25 @@
namespace App\Http\Controllers;
use App\Services\GatewayWorker\UserService;
use Illuminate\Http\Request;
class UserController extends Controller
{
//
/**
* 获取用户列表
* @Method GET
* @return \Illuminate\Http\JsonResponse
*/
public function userList()
{
try {
return jok(
(new UserService())->userList()
);
} catch (\Exception $e) {
return jerr($e->getMessage());
}
}
}