revert: delete files

This commit is contained in:
Jacob Nguyen
2022-08-26 00:07:14 -05:00
parent a4301dc283
commit e85eb81f8b
2 changed files with 0 additions and 30 deletions

View File

@@ -1,5 +0,0 @@
export class Modules {
}

View File

@@ -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;
}
}