summaryrefslogtreecommitdiff
path: root/src/core/AutoreportBase.ts
blob: 1129d3565d04928333e81451a40235294f6fc08e (plain)
1
2
3
4
5
6
7
8
9
10
import YAML from "yaml";
import { readFileSync } from "node:fs";

export default class AutoreportBase {
    public static getRoot() {
        return __dirname + "/../../";
    }

    public static config = YAML.parse(readFileSync(AutoreportBase.getRoot() + "/config.yml").toString());
}