UNPKG

better-auth-compliance

Version:

Regional compliance and privacy plugin for Better Auth - GDPR, CCPA, and data protection automation

24 lines (23 loc) 338 B
// src/index.ts function compliancePlugin(options) { return { id: "compliance", init() { }, hooks: { before: [ { matcher(ctx) { return true; }, handler: async (ctx) => { return; } } ] } }; } export { compliancePlugin };