chore: add AGENTS.md with build, lint, test commands and style guidelines
This commit is contained in:
9
js/strategies/index.js
Normal file
9
js/strategies/index.js
Normal file
@ -0,0 +1,9 @@
|
||||
export const StrategyRegistry = {};
|
||||
|
||||
export function registerStrategy(name, strategyModule) {
|
||||
StrategyRegistry[name] = strategyModule;
|
||||
}
|
||||
|
||||
export function getStrategy(name) {
|
||||
return StrategyRegistry[name];
|
||||
}
|
||||
Reference in New Issue
Block a user