6 lines
148 B
TypeScript
6 lines
148 B
TypeScript
import { NextRequest } from 'next/server'
|
|
|
|
export async function PUT(req: NextRequest) {
|
|
// обновляем данные в аккаунте
|
|
}
|