export interface DatabaseConfig {
    host: string;
    dbuser: string;
    dbpassword: string;
    dbname: string;
    port: number;
}
