16 lines
269 B
TypeScript
16 lines
269 B
TypeScript
|
import { InstallOptions, Plugin } from '@nocobase/server';
|
||
|
|
||
|
export class CustomSchemaScopePlugin extends Plugin {
|
||
|
beforeLoad() {
|
||
|
// TODO
|
||
|
}
|
||
|
|
||
|
async load() {}
|
||
|
|
||
|
async install(options: InstallOptions) {
|
||
|
// TODO
|
||
|
}
|
||
|
}
|
||
|
|
||
|
export default CustomSchemaScopePlugin;
|