mirror of
https://github.com/NapNeko/NapCatQQ.git
synced 2026-02-06 21:10:23 +00:00
* feat: 统一并标准化eslint * lint: napcat.webui * lint: napcat.webui * lint: napcat.core * build: fix * lint: napcat.webui * refactor: 重构eslint * Update README.md
11 lines
289 B
TypeScript
11 lines
289 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 () {
|
|
|
|
}
|
|
}
|