because I got bored of customising my CV for every job
at main 12 lines 435 B view raw
1import { Global, Module } from "@nestjs/common"; 2import { DatabaseModule } from "@/modules/database/database.module"; 3import { AiCallLogPersistenceService } from "./ai-call-log-persistence.service"; 4import { AiCallLogService } from "./ai-call-log.service"; 5 6@Global() 7@Module({ 8 imports: [DatabaseModule], 9 providers: [AiCallLogPersistenceService, AiCallLogService], 10 exports: [AiCallLogService], 11}) 12export class AiCallLogModule {}