You've already forked joplin
mirror of
https://github.com/laurent22/joplin.git
synced 2025-06-27 23:28:38 +02:00
All: Add support for application plugins (#3257)
This commit is contained in:
11
ReactNativeClient/lib/services/plugins/BasePluginRunner.ts
Normal file
11
ReactNativeClient/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) {
|
||||
throw new Error(`Not implemented: ${plugin} / ${sandbox}`);
|
||||
}
|
||||
|
||||
}
|
Reference in New Issue
Block a user