]>
Commit | Line | Data |
---|---|---|
8cfba6fe BB |
1 | 'use strict'; |
2 | ||
3 | const Config = require('../config/config'); | |
4 | const SortingHat = require('..'); | |
5 | ||
6 | const 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 | ||
18 | internals.run(); |