From 6553f1463de9efa713a49726a3eaee22fc6fd3e3 Mon Sep 17 00:00:00 2001 From: aterox Date: Sun, 6 Mar 2022 03:02:41 -0500 Subject: [PATCH] No longer needed --- services/get-conf.js | 10 ---------- 1 file changed, 10 deletions(-) delete mode 100644 services/get-conf.js diff --git a/services/get-conf.js b/services/get-conf.js deleted file mode 100644 index df952256..00000000 --- a/services/get-conf.js +++ /dev/null @@ -1,10 +0,0 @@ -/** - * Gets the configuration from conf.yml - */ -const fs = require('fs'); -const yaml = require('js-yaml'); - -module.exports = () => { - const conf = yaml.load(fs.readFileSync('./public/conf.yml', 'utf-8')); - return conf; -};