// apps/edr-freight-api/src/data-source.ts import "dotenv/config"; import { DataSource } from "typeorm"; import { buildDataSourceOptions } from "./config/database.config"; export const AppDataSource = new DataSource(buildDataSourceOptions()); export default AppDataSource;