import { config } from "dotenv";
config();

const dbUrl = process.env.DB_URL;
export const databaseConfig: string = dbUrl as string;

