mirror of
https://github.com/musix-org/musix-oss
synced 2024-11-13 02:20: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)
|
|
)
|
|
)
|
|
})()
|