Files
custom_discordjs/structures/DataManager.js
T
2023-04-07 20:35:03 -04:00

6 lines
136 B
JavaScript

export class DataManager {
/** @type {import('./client/client.js').Client} */
client;
constructor(c) { this.client = c; }
}