public InfoService(CommandService commands, OriGlobal global, InfoFormatter formatter = null) { _commands = commands; _reports = global.Reports; _formatter = formatter; // ?? InfoFormatter.Default; Guides = formatter?.OnLoadGuides(); }
public OriGlobal() { Reports = new ReportContainer(); }
internal OriGlobal(ReportContainer reports) { Reports = reports ?? new ReportContainer(); }