trying a simple test export

This commit is contained in:
bill bittner 2018-03-08 14:47:42 -08:00
parent 29069302e9
commit 8706b07634
3 changed files with 12 additions and 8 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,11 +88,15 @@ const startServer = (mysqlConfig) => {
});
};
const speech = {
start (config) {
const { mysqlConfig } = config;
startServer(mysqlConfig);
module.exports = {
hello () {
console.log('hello world');
},
speak (something) {
console.log(something);
},
// start (config) {
// const { mysqlConfig } = config;
// startServer(mysqlConfig);
// },
};
module.exports = speech;