mirror of
https://github.com/SrIzan10/handler.git
synced 2026-05-01 10:45:17 +00:00
revert: delete files
This commit is contained in:
@@ -1,5 +0,0 @@
|
||||
|
||||
|
||||
export class Modules {
|
||||
|
||||
}
|
||||
@@ -1,25 +0,0 @@
|
||||
import type ModuleManager from '../contracts/moduleManager';
|
||||
import { ModuleStore } from './moduleStore';
|
||||
import type {
|
||||
CommandModuleDefs,
|
||||
} from '../../types/module';
|
||||
import type { CommandType } from './enums';
|
||||
|
||||
|
||||
/**
|
||||
* The default ModuleManager which is provided with sern
|
||||
* enables getting and setting modules into the ModuleStore
|
||||
*/
|
||||
export class DefaultModulesManager implements ModuleManager {
|
||||
private moduleStore = new ModuleStore();
|
||||
|
||||
getModule<T extends CommandType>(type: T): CommandModuleDefs[T] | undefined {
|
||||
return undefined;
|
||||
}
|
||||
|
||||
setModule<T extends CommandType>(type: T) {
|
||||
return undefined;
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user