/**
 * CLS (Continuation-Local Storage) keys.
 *
 * These keys are used to store request-scoped context
 * that propagates automatically through the async call chain.
 *
 * Per CLAUDE.md:
 * - tenant_id stored in CLS via TenantMiddleware
 * - user_id stored in CLS via JwtStrategy (after auth)
 * - TenantAwareRepository reads from CLS automatically
 * - No manual setTenantId() calls
 */
export const CLS_TENANT_ID = 'tenant_id';
export const CLS_USER_ID = 'user_id';
