mirror of
https://github.com/openclaw/openclaw.git
synced 2026-06-06 05:51:15 +08:00
12 lines
484 B
TypeScript
12 lines
484 B
TypeScript
// Nostr API module exposes the plugin public contract.
|
|
export {
|
|
getPluginRuntimeGatewayRequestScope,
|
|
type OpenClawConfig,
|
|
type PluginRuntime,
|
|
} from "./runtime-api.js";
|
|
export { nostrPlugin } from "./src/channel.js";
|
|
export { createNostrProfileHttpHandler } from "./src/nostr-profile-http.js";
|
|
export { getNostrRuntime, setNostrRuntime } from "./src/runtime.js";
|
|
export { resolveNostrAccount } from "./src/types.js";
|
|
export type { ResolvedNostrAccount } from "./src/types.js";
|