diff options
| author | Ben Beltran <ben@nsovocal.com> | 2017-08-28 20:34:30 -0500 |
|---|---|---|
| committer | Ben Beltran <ben@nsovocal.com> | 2017-08-28 20:34:30 -0500 |
| commit | 8cfba6fefb4d7b899d52584fd0f7778e7d921691 (patch) | |
| tree | a4cddd5a3fa33d8a22a65746ea89c46344b37385 /bin/sorting_hat.js | |
| parent | 23df36297f93606c13b0b7a07a420777eaa5c7c8 (diff) | |
Update binary and docs
Diffstat (limited to 'bin/sorting_hat.js')
| -rw-r--r-- | bin/sorting_hat.js | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/bin/sorting_hat.js b/bin/sorting_hat.js new file mode 100644 index 0000000..bcd1225 --- /dev/null +++ b/bin/sorting_hat.js @@ -0,0 +1,18 @@ +'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(); |