tachybase_todo/packages/plugins/@tachybase/plugin-online-user/src/server/plugin.ts
sealday 4b5d09a3cf feat: web notification (#1573)
Co-authored-by: sealday <sealday@gmail.com>
Reviewed-on: daoyoucloud/tachybase#1573
2024-09-27 05:12:12 +08:00

20 lines
302 B
TypeScript

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