fix: auth handler + circular imports — Phase 1 verification (P1-009) (#73)

Co-authored-by: Jason Woltje <[email protected]>
Co-committed-by: Jason Woltje <[email protected]>
This commit is contained in:
2026-03-13 03:02:02 +00:00
committed by jason.woltje
parent c54b69f7ce
commit aa9ee75a2a
11 changed files with 51 additions and 24 deletions
+1 -2
View File
@@ -2,8 +2,7 @@ import { Global, Module } from '@nestjs/common';
import { createBrain, type Brain } from '@mosaic/brain';
import type { Db } from '@mosaic/db';
import { DB } from '../database/database.module.js';
export const BRAIN = 'BRAIN';
import { BRAIN } from './brain.tokens.js';
@Global()
@Module({
+1
View File
@@ -0,0 +1 @@
export const BRAIN = 'BRAIN';