aboutsummaryrefslogtreecommitdiff
path: root/bin/sorting_hat.js
blob: 8430c61c2f5ac92df65988a6a8c7dddc8fcbdced (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/usr/bin/env node

'use strict';

const Config = require('../config/config');
const SortingHat = require('..');

const internals = {

  // Main entry point of the application

  run() {

    const sortingHat = new SortingHat(Config);

    sortingHat.start();
  }
};

internals.run();