Folder structure #398

Merged
bones7242 merged 76 commits from folder-structure into master 2018-03-20 00:01:08 +01:00
3 changed files with 7 additions and 7 deletions
Showing only changes of commit 936a431c14 - Show all commits

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,15 +88,15 @@ const startServer = (mysqlConfig) => {
}); });
}; };
module.exports = { exports = {
hello () { hello () {
console.log('hello world'); console.log('hello world');
}, },
speak (something) { speak (something) {
console.log(something); console.log(something);
}, },
// start (config) { start (config) {
// const { mysqlConfig } = config; const { mysqlConfig } = config;
// startServer(mysqlConfig); startServer(mysqlConfig);
// }, },
}; };