tachybase_todo/packages/plugins/@tachybase/plugin-messages/src/server/plugin.ts
sealday bf2cae92b0 feat: 通知与个人页面改版(WIP) (#1455)
Co-authored-by: sealday <sealday@gmail.com>
Co-authored-by: wangjiahui <wwwjh0710@163.com>
Reviewed-on: daoyoucloud/tachybase#1455
2024-09-14 18:52:36 +08:00

20 lines
298 B
TypeScript

import { Plugin } from '@tachybase/server';
export class PluginMessagesServer extends Plugin {
async afterAdd() {}
async beforeLoad() {}
async load() {}
async install() {}
async afterEnable() {}
async afterDisable() {}
async remove() {}
}
export default PluginMessagesServer;