magmastream
Version:
A user-friendly Lavalink client designed for NodeJS.
18 lines (17 loc) • 381 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.Plugin = void 0;
/**
* Base abstract class for all plugins.
* Users must extend this and implement load and unload methods.
*/
class Plugin {
name;
/**
* @param name The name of the plugin
*/
constructor(name) {
this.name = name;
}
}
exports.Plugin = Plugin;