fixed all tests

This commit is contained in:
Boki 2025-06-26 17:30:13 -04:00
parent 08f713d98b
commit bd26ecf3bc
11 changed files with 457 additions and 794 deletions

View file

@ -1,3 +1,22 @@
// Export only what's actually used
export { ServiceApplication } from './service-application';
export { ServiceContainerBuilder } from './container/builder';
export { OperationContext } from './operation-context';
export { calculatePoolSize, getServicePoolSize, getHandlerPoolSize } from './pool-size-calculator';
export { ServiceLifecycleManager } from './utils/lifecycle';
export { HandlerScanner } from './scanner/handler-scanner';
// Export schemas
export {
appConfigSchema,
redisConfigSchema,
mongodbConfigSchema,
postgresConfigSchema,
questdbConfigSchema,
proxyConfigSchema,
browserConfigSchema,
queueConfigSchema
} from './config/schemas';
// Export factories
export { CacheFactory } from './factories';