import { respondApi } from ':src/utils.ts' import { publicKey } from ':src/webpush/mod.ts' import { define } from '../../../utils.ts' export const handler = define.handlers({ GET() { console.log('VAPID', publicKey) return respondApi('success', publicKey) }, })