Settings reverse proxy (doesn't work)

This commit is contained in:
Isaac
2022-09-07 21:24:16 +01:00
parent 742dedd635
commit be0795cde0
9 changed files with 48 additions and 26 deletions

14
src/stdin/settings.js Normal file
View File

@@ -0,0 +1,14 @@
const { StdinCommand } = require('@eartharoid/dbf');
module.exports = class extends StdinCommand {
constructor(client, options) {
super(client, {
...options,
id: 'settings',
});
}
async run() {
this.client.log.info.settings(process.env.HTTP_EXTERNAL + '/settings');
}
};