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;
|