update: optimize entity factory (formerly converter.ts)

This commit is contained in:
Seijo Cecilia
2024-08-26 14:36:10 +08:00
parent e3e5a1bcdb
commit 9ea5c413d3
11 changed files with 51 additions and 64 deletions

View File

@@ -1,5 +1,5 @@
import { OB11User } from '../../types';
import { OB11Constructor } from '@/onebot/helper/converter';
import { OB11User } from '@/onebot';
import { OB11Entities } from '@/onebot/helper/entities';
import BaseAction from '../BaseAction';
import { ActionName } from '../types';
@@ -7,7 +7,7 @@ class GetLoginInfo extends BaseAction<null, OB11User> {
actionName = ActionName.GetLoginInfo;
async _handle(payload: null) {
return OB11Constructor.selfInfo(this.core.selfInfo);
return OB11Entities.selfInfo(this.core.selfInfo);
}
}