mcfly/templates/basic/routes/api/user.js
2024-12-19 23:11:07 +01:00

11 lines
228 B
JavaScript

/**
* `./routes/api/`
* ...is where we put file-based REST API endpoints
* this one is accessible via https://<domain>/api/user
*/
export default eventHandler(() => {
return {
user: 'AYO',
date: new Date(),
}
})