From 0eb762671cf577dd6e32bd9c3af72e3304c6b947 Mon Sep 17 00:00:00 2001
From: bill bittner <bittner.w@gmail.com>
Date: Tue, 17 Apr 2018 14:03:50 -0700
Subject: [PATCH] updated mysqlConfig -> MysqlConfig

---
 config/mysqlConfig.js | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/config/mysqlConfig.js b/config/mysqlConfig.js
index d4d33ac9..07301eb8 100644
--- a/config/mysqlConfig.js
+++ b/config/mysqlConfig.js
@@ -1,6 +1,6 @@
 const logger = require('winston');
 
-function mysql () {
+function MysqlConfig () {
   this.database = 'default';
   this.username = 'default';
   this.password = 'default';
@@ -17,4 +17,4 @@ function mysql () {
   };
 }
 
-module.exports = new mysql();
+module.exports = new MysqlConfig();