2025-02-24 10:32:41 +05:30
|
|
|
import { Module } from '@nestjs/common';
|
|
|
|
|
import { DbModule } from './db/db.module';
|
2025-02-25 13:18:33 +05:30
|
|
|
import { OracleModule } from './oracle/oracle.module';
|
2025-02-24 10:32:41 +05:30
|
|
|
|
|
|
|
|
@Module({
|
2025-02-25 13:18:33 +05:30
|
|
|
imports: [DbModule, OracleModule],
|
2025-03-07 12:52:51 +05:30
|
|
|
controllers: [],
|
|
|
|
|
providers: [],
|
2025-02-24 10:32:41 +05:30
|
|
|
})
|
|
|
|
|
export class AppModule {}
|