* feat: improve code * chore: update version * feat: api service * fix: api services * feat: improve code * feat: improve code * feat: improve code * feat: pm socket * fix: test errors * feat: add built-in plugins before upgrade * feat: update docs * feat: improve code * fix: after load
17 lines
258 B
TypeScript
17 lines
258 B
TypeScript
import { InstallOptions, Plugin } from '@nocobase/server';
|
|
|
|
export class CustomPagePlugin extends Plugin {
|
|
|
|
afterAdd() {}
|
|
|
|
beforeLoad() {}
|
|
|
|
async load() {}
|
|
|
|
async install(options: InstallOptions) {
|
|
// TODO
|
|
}
|
|
}
|
|
|
|
export default CustomPagePlugin;
|