refactor: Action

This commit is contained in:
手瓜一十雪
2024-11-19 12:49:51 +08:00
parent 86db0e827c
commit fa6a8816f8
88 changed files with 206 additions and 221 deletions

View File

@@ -1,7 +1,7 @@
import BaseAction from '../BaseAction';
import { OneBotAction } from '@/onebot/action/OneBotAction';
import { ActionName } from '../types';
export default class GetGuildList extends BaseAction<null, null> {
export default class GetGuildList extends OneBotAction<null, null> {
actionName = ActionName.GetGuildList;
async _handle(payload: null): Promise<null> {

View File

@@ -1,7 +1,7 @@
import BaseAction from '../BaseAction';
import { OneBotAction } from '@/onebot/action/OneBotAction';
import { ActionName } from '../types';
export default class GetGuildProfile extends BaseAction<null, null> {
export default class GetGuildProfile extends OneBotAction<null, null> {
actionName = ActionName.GetGuildProfile;
async _handle(payload: null): Promise<null> {