mirror of
https://github.com/LLOneBot/LLOneBot.git
synced 2024-11-22 01:56:33 +00:00
14 lines
343 B
TypeScript
14 lines
343 B
TypeScript
import BaseAction from "../BaseAction";
|
|
import {ActionName} from "../types";
|
|
|
|
interface Payload{
|
|
message_id: number
|
|
}
|
|
|
|
export default class GoCQHTTPMarkMsgAsRead extends BaseAction<Payload, null>{
|
|
actionName = ActionName.GoCQHTTP_MarkMsgAsRead
|
|
|
|
protected async _handle(payload: Payload): Promise<null> {
|
|
return null
|
|
}
|
|
} |