UNPKG

create-fluxstack

Version:

⚡ Revolutionary full-stack TypeScript framework with Declarative Config System, Elysia + React + Bun

46 lines (40 loc) 1.47 kB
/** * Service Registry * Configures and exports all application services */ import type { FluxStackConfig } from '../../../core/config' import type { Logger } from '../../../core/utils/logger/index' import { ServiceContainer } from '../../../core/server/services/index.js' import { UserService } from './UserService' import { NotificationService } from './NotificationService' /** * Create and configure the service container */ export function createServiceContainer(config: FluxStackConfig, logger: Logger): ServiceContainer { const container = new ServiceContainer(logger) // Register all services container.registerMany([ { name: 'userService', constructor: UserService, singleton: true }, { name: 'notificationService', constructor: NotificationService, dependencies: [], // Could depend on userService if needed singleton: true } ]) return container } // Re-export service classes and types export { BaseService, ServiceContainer } from '../../../core/server/services/index.js' export { UserService } from './UserService' export { NotificationService } from './NotificationService' export type { ServiceContext, ServiceDefinition } from '../../../core/server/services/index.js' export type { User, CreateUserData, UpdateUserData } from './UserService' export type { Notification, CreateNotificationData } from './NotificationService'