mirror of
https://github.com/wukko/cobalt.git
synced 2024-11-15 20:59:59 +00:00
17 lines
585 B
JavaScript
17 lines
585 B
JavaScript
|
import loadJson from "./sub/load-json.js";
|
||
|
const config = loadJson("./src/config.json");
|
||
|
|
||
|
export const
|
||
|
services = loadJson("./src/modules/services/all.json"),
|
||
|
appName = config.appName,
|
||
|
version = config.version,
|
||
|
streamLifespan = config.streamLifespan,
|
||
|
maxVideoDuration = config.maxVideoDuration,
|
||
|
genericUserAgent = config.genericUserAgent,
|
||
|
repo = config.repo,
|
||
|
authorInfo = config.authorInfo,
|
||
|
supportedLanguages = config.supportedLanguages,
|
||
|
quality = config.quality,
|
||
|
internetExplorerRedirect = config.internetExplorerRedirect,
|
||
|
donations = config.donations,
|
||
|
ffmpegArgs = config.ffmpegArgs
|