]> git.r.bdr.sh - rbdr/sorting-hat/blame - bin/sorting_hat.js
Fix exec, update docs
[rbdr/sorting-hat] / bin / sorting_hat.js
CommitLineData
476dd67e
BB
1#!/usr/bin/env node
2
8cfba6fe
BB
3'use strict';
4
5const Config = require('../config/config');
6const SortingHat = require('..');
7
8const 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
20internals.run();