8 lines
275 B
TypeScript
8 lines
275 B
TypeScript
import { oapiClient, sendResponse } from '../../oapi-client'
|
|
|
|
export async function POST(req: Request) {
|
|
const body = req.body ? await req.json() : {}
|
|
const res = await oapiClient.post('/v1/super_agent/chat/get_conversation_info_list', body)
|
|
return sendResponse(res)
|
|
}
|