tachybase_todo/packages/plugins/@tachybase/plugin-online-user/src/server/plugin.ts

20 lines
302 B
TypeScript
Raw Normal View History

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;