1import { writeFileSync } from 'node:fs';
2
3let counter = 0;
4
5export async function initialize() {
6  writeFileSync(1, `hooks initialize ${++counter}\n`);
7}
8