6 lines
164 B
TypeScript
6 lines
164 B
TypeScript
export default defineEventHandler(async (event) => {
|
|
const body = await readBody(event)
|
|
await writeYaml('librodrome.config.yml', body)
|
|
return { ok: true }
|
|
})
|