sealday
4b5d09a3cf
Co-authored-by: sealday <sealday@gmail.com> Reviewed-on: daoyoucloud/tachybase#1573
20 lines
302 B
TypeScript
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;
|