mirror of
https://github.com/kuhyx/WUT_Computer_Science.git
synced 2026-07-06 21:03:14 +02:00
12 lines
189 B
JavaScript
12 lines
189 B
JavaScript
/* @flow */
|
|
|
|
(function () {
|
|
require('./lib/main').config(
|
|
Object.assign(
|
|
{},
|
|
require('./lib/env-options'),
|
|
require('./lib/cli-options')(process.argv)
|
|
)
|
|
)
|
|
})()
|