mirror of
https://github.com/NapNeko/NapCatQQ.git
synced 2026-02-11 23:40:24 +00:00
11 lines
275 B
TypeScript
11 lines
275 B
TypeScript
import BaseAction from '../BaseAction';
|
|
import { ActionName } from '../types';
|
|
|
|
export default class GetGuildProfile extends BaseAction<null, null> {
|
|
actionName = ActionName.GetGuildProfile;
|
|
|
|
async _handle(payload: null): Promise<null> {
|
|
return null;
|
|
}
|
|
}
|