/** * Example Module * * NestJS module demonstrating the proper pattern using domain service directly: * Module → Controller → BackendExampleService * * The BackendExampleService is auto-initialized by Core.initialize() and * can be injected via ServiceRegistry or provided directly to controllers. * * @example Usage in app.module.ts * ```typescript * import { CoreModule } from '@plyaz/core/nestjs'; * import { ExampleModule } from '@plyaz/core'; * * @Module({ * imports: [ * CoreModule.forRoot({ envPath: '.env' }), * ExampleModule, * ], * }) * export class AppModule {} * ``` */ import { BACKEND_EXAMPLE_DOMAIN_SERVICE } from './example.controller'; import { BackendExampleDomainService } from '../../domain/example'; export declare class ExampleModule { } export { BackendExampleDomainService, BACKEND_EXAMPLE_DOMAIN_SERVICE }; //# sourceMappingURL=example.module.d.ts.map