]> git.r.bdr.sh - rbdr/sorting-hat/blame - bin/sorting_hat.js
Merge branch 'release/1.0.0'
[rbdr/sorting-hat] / bin / sorting_hat.js
CommitLineData
8cfba6fe
BB
1'use strict';
2
3const Config = require('../config/config');
4const SortingHat = require('..');
5
6const internals = {
7
8 // Main entry point of the application
9
10 run() {
11
12 const sortingHat = new SortingHat(Config);
13
14 sortingHat.start();
15 }
16};
17
18internals.run();