mirror of
https://github.com/Hessenuk/DiscordTickets.git
synced 2024-11-05 20:33:08 +02:00
11 lines
240 B
JavaScript
11 lines
240 B
JavaScript
const Cryptr = require('cryptr');
|
|
const cryptr = new Cryptr(process.env.ENCRYPTION_KEY);
|
|
|
|
module.exports = class TicketArchiver {
|
|
constructor(client) {
|
|
/** @type {import("client")} */
|
|
this.client = client;
|
|
}
|
|
|
|
async addMessage() {}
|
|
}; |