mirror of
https://github.com/NapNeko/NapCatQQ.git
synced 2025-07-19 12:03:37 +00:00
refactor: 迁移到新库
This commit is contained in:
src
common
utils
newcore
@@ -1,4 +1,3 @@
|
||||
import { NodeIKernelMsgListener } from '@/core';
|
||||
import { NodeIQQNTWrapperSession } from '@/core/wrapper';
|
||||
import { randomUUID } from 'crypto';
|
||||
|
||||
|
@@ -1,2 +0,0 @@
|
||||
//统一到处入口
|
||||
export * from './main';
|
@@ -1,29 +0,0 @@
|
||||
enum NapCatCorePlatform {
|
||||
Node = 'Node',//命令行模式加载
|
||||
LiteLoader = 'LiteLoader',//LL插件模式加载
|
||||
}
|
||||
class NewNapCatCore {
|
||||
platform: NapCatCorePlatform; // 平台
|
||||
constructor(platform: NapCatCorePlatform) {
|
||||
this.platform = platform;
|
||||
}
|
||||
}
|
||||
export class NapCatCoreManger {
|
||||
static core: NewNapCatCore | undefined = undefined;
|
||||
static defaultPlatform: NapCatCorePlatform = NapCatCorePlatform.Node;
|
||||
static SetDefaultCore(platform: NapCatCorePlatform) {
|
||||
if (this.core !== undefined) {
|
||||
return;
|
||||
}
|
||||
this.defaultPlatform = platform;
|
||||
}
|
||||
static GetPlatform(): NapCatCorePlatform {
|
||||
return NapCatCoreManger.defaultPlatform;
|
||||
}
|
||||
static GetInstance(): NewNapCatCore {
|
||||
if (this.core === undefined) {
|
||||
this.core = new NewNapCatCore(NapCatCoreManger.defaultPlatform);
|
||||
}
|
||||
return this.core;
|
||||
}
|
||||
}
|
@@ -1 +0,0 @@
|
||||
//拦截proxy到会话
|
@@ -1 +0,0 @@
|
||||
//初始化跟之前一样
|
@@ -1 +0,0 @@
|
||||
//proxy封装工具类
|
Reference in New Issue
Block a user