From 8cfba6fefb4d7b899d52584fd0f7778e7d921691 Mon Sep 17 00:00:00 2001 From: Ben Beltran Date: Mon, 28 Aug 2017 20:34:30 -0500 Subject: Update binary and docs --- bin/sorting_hat.js | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 bin/sorting_hat.js (limited to 'bin') 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(); -- cgit