mirror of
https://github.com/NapNeko/NapCatQQ.git
synced 2026-01-03 08:39:04 +08:00
10 lines
268 B
TypeScript
10 lines
268 B
TypeScript
import BaseAction from '../BaseAction';
|
|
import { ActionName } from '../types';
|
|
|
|
export default class GetGuildList extends BaseAction<null, null> {
|
|
actionName = ActionName.GetGuildList;
|
|
|
|
protected async _handle(payload: null): Promise<null> {
|
|
return null;
|
|
}
|
|
} |