2023-08-28 14:58:41 +00:00
|
|
|
import "reflect-metadata"
|
2023-08-28 15:19:19 +00:00
|
|
|
|
2023-08-27 10:15:04 +00:00
|
|
|
export default defineEventHandler((envent)=>{
|
|
|
|
// @ts-ignore
|
|
|
|
const webName:string|undefined = envent.context.params.WebName
|
|
|
|
return {
|
|
|
|
api:'works'
|
|
|
|
}
|
|
|
|
})
|