mirror of
https://github.com/NapNeko/NapCatQQ.git
synced 2026-03-01 16:20:25 +00:00
11 lines
308 B
TypeScript
11 lines
308 B
TypeScript
import { OneBotAction } from '@/onebot/action/OneBotAction';
|
|
import { ActionName } from '@/onebot/action/router';
|
|
//兼容性代码
|
|
export class GoCQHTTPSetModelShow extends OneBotAction<void, void> {
|
|
override actionName = ActionName.GoCQHTTP_SetModelShow;
|
|
|
|
async _handle() {
|
|
return;
|
|
}
|
|
}
|