You've already forked joplin
mirror of
https://github.com/laurent22/joplin.git
synced 2025-06-24 23:26:50 +02:00
All: Use Lerna to manage monorepo
This commit is contained in:
11
packages/lib/services/plugins/BasePluginRunner.ts
Normal file
11
packages/lib/services/plugins/BasePluginRunner.ts
Normal file
@ -0,0 +1,11 @@
|
||||
import Plugin from './Plugin';
|
||||
import BaseService from '../BaseService';
|
||||
import Global from './api/Global';
|
||||
|
||||
export default abstract class BasePluginRunner extends BaseService {
|
||||
|
||||
async run(plugin:Plugin, sandbox:Global):Promise<void> {
|
||||
throw new Error(`Not implemented: ${plugin} / ${sandbox}`);
|
||||
}
|
||||
|
||||
}
|
Reference in New Issue
Block a user