/** * Core Features Registry * * Lists all built-in features that are always initialized when running `zen-db init`. * Unlike optional modules (src/modules), core features are not gated by env vars — * they are required for the application to function. * * Each name must correspond to a directory under src/features/ that exposes a db.js * with createTables() and optionally dropTables(). */ export const CORE_FEATURES = [ 'auth', ];