8 lines
243 B
TypeScript
8 lines
243 B
TypeScript
import { oapiClient, sendResponse } from '../../../oapi-client'
|
|
|
|
export async function POST(req: Request) {
|
|
const body = await req.formData()
|
|
const res = await oapiClient.post('/v1/plugins/skill/upload', body)
|
|
return sendResponse(res)
|
|
}
|