updated server and bundle

This commit is contained in:
bill bittner 2018-03-08 14:33:10 -08:00
parent 6c2bef12ea
commit 29069302e9
3 changed files with 9 additions and 5 deletions

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View file

@ -88,7 +88,11 @@ const startServer = (mysqlConfig) => {
}); });
}; };
module.exports = (config) => { const speech = {
start (config) {
const { mysqlConfig } = config; const { mysqlConfig } = config;
return startServer(mysqlConfig); startServer(mysqlConfig);
},
}; };
module.exports = speech;