import BaseAction from "./BaseAction"; import {OB11Status} from "../types"; import {ActionName} from "./types"; export default class GetStatus extends BaseAction { actionName = ActionName.GetStatus protected async _handle(payload: any): Promise { return { online: null, good: true } } }