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