
* refactor: move engines to the sdk * refactor: move engines to plugins * refactor: move engines to plugins * fix: prettier
12 lines
321 B
TypeScript
12 lines
321 B
TypeScript
import { Distributor } from './distributor';
|
|
import { engines } from '@txtdot/plugins';
|
|
|
|
const distributor = new Distributor();
|
|
|
|
distributor.engine(engines.StackOverflow);
|
|
distributor.engine(engines.SearX);
|
|
distributor.engine(engines.Readability);
|
|
|
|
export const engineList = distributor.list;
|
|
export default distributor;
|