mirror of
https://github.com/NapNeko/NapCatQQ.git
synced 2025-12-30 21:49:04 +08:00
11 lines
298 B
TypeScript
11 lines
298 B
TypeScript
import { OneBotAction } from '@/onebot/action/OneBotAction';
|
|
import { ActionName } from '@/onebot/action/router';
|
|
|
|
export class GetGuildList extends OneBotAction<null, null> {
|
|
actionName = ActionName.GetGuildList;
|
|
|
|
async _handle(payload: null): Promise<null> {
|
|
return null;
|
|
}
|
|
}
|