Commit 8577c8de47c8d682e0daace393191c1b5157d8b6

Authored by Eric Fernandez
1 parent 37266dcb05
Exists in master

moment

Showing 1 changed file with 4 additions and 1 deletions   Show diff stats
1 1 const WebSocketClient = require('ws');
2 2 const config = require('./config/config.json');
3 3 const data = require('./data/index')(config.bo);
4   -module.exports = knex = require('knex')(config.bo);
  4 +module.exports =
  5 + knex = require('knex')(config.bo),
  6 + moment = require('moment');
  7 +
5 8  
6 9 const client = new WebSocketClient(config.urlHO);
7 10