]> git.r.bdr.sh - rbdr/sorting-hat/blob - bin/sorting_hat.js
Fix exec, update docs
[rbdr/sorting-hat] / bin / sorting_hat.js
1 #!/usr/bin/env node
2
3 'use strict';
4
5 const Config = require('../config/config');
6 const SortingHat = require('..');
7
8 const internals = {
9
10 // Main entry point of the application
11
12 run() {
13
14 const sortingHat = new SortingHat(Config);
15
16 sortingHat.start();
17 }
18 };
19
20 internals.run();