chore: improve code quality

This commit is contained in:
idranme
2024-09-06 01:36:32 +08:00
parent 970f1a98ec
commit 04b2a323a7
12 changed files with 64 additions and 88 deletions

View File

@@ -8,7 +8,7 @@ interface Payload {
export class MarkMsgAsRead extends BaseAction<Payload, null> {
actionName = ActionName.GoCQHTTP_MarkMsgAsRead
protected async _handle(payload: Payload): Promise<null> {
protected async _handle() {
return null
}
}