8 lines
153 B
Text
8 lines
153 B
Text
|
function MysqlConfig () {
|
||
|
this.database = 'default';
|
||
|
this.username = 'default';
|
||
|
this.password = 'default';
|
||
|
};
|
||
|
|
||
|
module.exports = new MysqlConfig();
|