mirror of
https://github.com/NapNeko/NapCatQQ.git
synced 2026-01-10 05:29:02 +08:00
11 lines
289 B
TypeScript
11 lines
289 B
TypeScript
import { OneBotAction } from '@/napcat-onebot/action/OneBotAction';
|
|
import { ActionName } from '@/napcat-onebot/action/router';
|
|
|
|
export class GetGuildProfile extends OneBotAction<void, void> {
|
|
override actionName = ActionName.GetGuildProfile;
|
|
|
|
async _handle (): Promise<void> {
|
|
|
|
}
|
|
}
|