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