/** * Test fixture: hook script that returns nothing. Migrated to * defineHook in HOOK_API_V2 Phase 8. */ import { defineHook } from '@celilo/capabilities'; export default defineHook({ requires: [], handler: async (ctx) => { ctx.logger.info('Void hook ran'); }, });