mirror of
https://github.com/NapNeko/NapCatQQ.git
synced 2026-01-11 22:59:03 +08:00
11 lines
283 B
TypeScript
11 lines
283 B
TypeScript
import { OneBotAction } from '@/napcat-onebot/action/OneBotAction';
|
|
import { ActionName } from '@/napcat-onebot/action/router';
|
|
|
|
export class GetGuildList extends OneBotAction<void, void> {
|
|
override actionName = ActionName.GetGuildList;
|
|
|
|
async _handle (): Promise<void> {
|
|
|
|
}
|
|
}
|