chore: old webui

Co-Authored-By: Wesley F. Young <25684570+Wesley-Young@users.noreply.github.com>
This commit is contained in:
手瓜一十雪
2024-08-08 20:21:44 +08:00
parent e5b90afff2
commit 4e4f93e655
31 changed files with 1441 additions and 72 deletions

View File

@@ -1,4 +1,12 @@
import { InstanceContext, NapCatCore } from "@/core";
//OneBot实现类
export class NapCatOneBot11Adapter{
readonly core: NapCatCore;
readonly context: InstanceContext;
constructor(core: NapCatCore, context: InstanceContext) {
this.core = core;
this.context = context;
}
}