first commit

This commit is contained in:
sliverp
2026-01-28 17:18:41 +08:00
commit 9a531cd6eb
10 changed files with 778 additions and 0 deletions

15
index.ts Normal file
View File

@@ -0,0 +1,15 @@
import type { MoltbotPluginApi } from "clawdbot/plugin-sdk";
import { qqbotPlugin } from "./src/channel.js";
export default {
register(api: MoltbotPluginApi) {
api.registerChannel({ plugin: qqbotPlugin });
},
};
export { qqbotPlugin } from "./src/channel.js";
export * from "./src/types.js";
export * from "./src/api.js";
export * from "./src/config.js";
export * from "./src/gateway.js";
export * from "./src/outbound.js";