mirror of
https://github.com/LLOneBot/LLOneBot.git
synced 2024-11-22 01:56:33 +00:00
14 lines
369 B
TypeScript
14 lines
369 B
TypeScript
import BaseAction from "./BaseAction";
|
|
import {OB11Status} from "../types";
|
|
import {ActionName} from "./types";
|
|
|
|
|
|
export default class GetStatus extends BaseAction<any, OB11Status> {
|
|
actionName = ActionName.GetStatus
|
|
protected async _handle(payload: any): Promise<OB11Status> {
|
|
return {
|
|
online: null,
|
|
good: true
|
|
}
|
|
}
|
|
} |