mirror of
https://github.com/NapNeko/NapCatQQ.git
synced 2026-01-01 23:39:09 +08:00
11 lines
290 B
TypeScript
11 lines
290 B
TypeScript
import { OneBotAction } from '@/onebot/action/OneBotAction';
|
|
import { ActionName } from '../types';
|
|
|
|
export class GetGuildProfile extends OneBotAction<null, null> {
|
|
actionName = ActionName.GetGuildProfile;
|
|
|
|
async _handle(payload: null): Promise<null> {
|
|
return null;
|
|
}
|
|
}
|