mirror of
https://github.com/fmhy/edit.git
synced 2026-02-18 09:11:33 +11:00
7 lines
366 B
TypeScript
7 lines
366 B
TypeScript
// This is a server-side event handler function that exports a default object with a "nitro" property.
|
|
// The function does not take any arguments and does not perform any asynchronous operations.
|
|
// It is likely used in a Nuxt.js application, to handle a specific event and return a response.
|
|
|
|
export default function eventHandler() {
|
|
return { nitro: 'works' }
|
|
}
|