2022-05-16 14:59:55 -04:00

19 lines
428 B
JavaScript

const modConfig = require("../config/config.json");
class Mod
{
// not used for this example
load(container)
{ return }
delayedLoad(container)
{
// get logger
const logger = container.resolve("WinstonLogger");
// log the 'myProperty' value to the console
logger.info(`here is the value from my config: ${modConfig.myProperty}`);
}
}
module.exports = { mod: new Mod() }