updating dynamic module to configurable module builder

This commit is contained in:
2025-01-30 12:46:33 -06:00
parent 41a1b9f807
commit 533d5d166b
24 changed files with 497 additions and 243 deletions

View File

@@ -0,0 +1,13 @@
import { Injectable, Logger } from '@nestjs/common';
import { DaprClient } from '@dapr/dapr';
@Injectable()
export class DaprService {
daprClient: DaprClient;
private readonly logger = new Logger(DaprService.name);
constructor() {
this.logger.log('Initializing DaprClient')
this.daprClient = new DaprClient();
}
}