tachybase_todo/packages/plugins/@nocobase/plugin-sample-custom-signup-page/src/server/index.ts

16 lines
269 B
TypeScript
Raw Normal View History

2022-10-12 12:13:31 +08:00
import { InstallOptions, Plugin } from '@nocobase/server';
export class CustomSchemaScopePlugin extends Plugin {
beforeLoad() {
// TODO
}
async load() {}
async install(options: InstallOptions) {
// TODO
}
}
export default CustomSchemaScopePlugin;