mirror of
https://github.com/NapNeko/NapCatQQ.git
synced 2026-02-12 07:50:25 +00:00
11 lines
316 B
TypeScript
11 lines
316 B
TypeScript
import { OneBotAction } from '@/onebot/action/OneBotAction';
|
|
import { ActionName } from '@/onebot/action/router';
|
|
//兼容性代码
|
|
export class GoCQHTTPSetModelShow extends OneBotAction<void, any> {
|
|
actionName = ActionName.GoCQHTTP_SetModelShow;
|
|
|
|
async _handle(payload: void) {
|
|
return null;
|
|
}
|
|
}
|