mirror of
https://github.com/Litlyx/litlyx
synced 2025-12-10 15:58:38 +01:00
7 lines
182 B
TypeScript
7 lines
182 B
TypeScript
import { logger } from "../Logger"
|
|
|
|
|
|
export default defineEventHandler(async (event) => {
|
|
const start = Date.now();
|
|
event.context['performance-start'] = start.toString();
|
|
}); |