mirror of
https://github.com/Hessenuk/DiscordTickets.git
synced 2025-02-24 03:01:28 +02:00
14 lines
288 B
JavaScript
14 lines
288 B
JavaScript
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');
|
|
}
|
|
}; |