mirror of
https://github.com/musix-org/musix-oss
synced 2024-11-10 08:10:18 +00: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)
|
||
|
)
|
||
|
)
|
||
|
})()
|