mirror of
https://github.com/LLOneBot/LLOneBot.git
synced 2024-11-22 01:56:33 +00:00
9 lines
271 B
TypeScript
9 lines
271 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;
|
|
}
|
|
} |