Spaces:
Paused
Paused
| import type { OpenClawPluginApi } from "openclaw/plugin-sdk"; | |
| import { emptyPluginConfigSchema } from "openclaw/plugin-sdk"; | |
| import { tlonPlugin } from "./src/channel.js"; | |
| import { setTlonRuntime } from "./src/runtime.js"; | |
| const plugin = { | |
| id: "tlon", | |
| name: "Tlon", | |
| description: "Tlon/Urbit channel plugin", | |
| configSchema: emptyPluginConfigSchema(), | |
| register(api: OpenClawPluginApi) { | |
| setTlonRuntime(api.runtime); | |
| api.registerChannel({ plugin: tlonPlugin }); | |
| }, | |
| }; | |
| export default plugin; | |