voyage-and-consumption-mcp-server
Version:
Voyage and consumption management server handling vessel position tracking, ETA monitoring, fuel consumption, lube oil consumption, fresh water production and weather data
13 lines • 359 B
JavaScript
let _config = null;
export function setConfig(config) {
_config = config;
}
export function getConfig() {
if (!_config) {
throw new Error("Config not set. Call setConfig(config) in server startup.");
}
return _config;
}
// Export config as default for easier importing
export { getConfig as config };
//# sourceMappingURL=config.js.map