This commit is contained in:
2025-12-04 20:05:56 +08:00
parent 47fe4c1343
commit 57660d2d9c
13 changed files with 16138 additions and 0 deletions

9
src/index.ts Normal file
View File

@@ -0,0 +1,9 @@
import { CNBCore } from "./cnb-core";
import { Workspace } from "./workspace";
export class CNB extends CNBCore {
workspace: Workspace;
constructor(token: string) {
super({ token });
this.workspace = new Workspace(token);
}
}