UNPKG

@c15t/backend

Version:

Consent policy engine and API for c15t. Powers the cookie banner, consent manager, and preferences centre. Webhooks, audit logs, storage adapters. Self host or use consent.io

9 lines (7 loc) 223 B
import { os } from './contracts'; import { consentHandlers } from './handlers/consent'; import { metaHandlers } from './handlers/meta'; export const router = os.router({ consent: consentHandlers, meta: metaHandlers, });