mirror of
https://github.com/Hessenuk/DiscordTickets.git
synced 2024-11-05 20:33:08 +02:00
22 lines
378 B
JavaScript
22 lines
378 B
JavaScript
|
/**
|
||
|
*
|
||
|
* @name DiscordTickets
|
||
|
* @author eartharoid <contact@eartharoid.me>
|
||
|
* @license GNU-GPLv3
|
||
|
*
|
||
|
*/
|
||
|
|
||
|
const ChildLogger = require('leekslazylogger').ChildLogger;
|
||
|
const log = new ChildLogger();
|
||
|
|
||
|
module.exports.create = (client, channel) => {
|
||
|
|
||
|
};
|
||
|
|
||
|
module.exports.addUser = (client, channel, user) => {
|
||
|
|
||
|
};
|
||
|
|
||
|
module.exports.addMessage = (client, channel, message) => {
|
||
|
|
||
|
};
|