mirror of
https://github.com/openclaw/openclaw.git
synced 2026-06-06 05:51:15 +08:00
13 lines
518 B
TypeScript
13 lines
518 B
TypeScript
// Document Extract plugin entrypoint registers its OpenClaw integration.
|
|
import { definePluginEntry } from "openclaw/plugin-sdk/plugin-entry";
|
|
|
|
export default definePluginEntry({
|
|
id: "document-extract",
|
|
name: "Document Extraction",
|
|
description: "Extract text and fallback page images from local document attachments.",
|
|
register() {
|
|
// Runtime is exposed through document-extractor.ts so document hot paths can
|
|
// load only the narrow extractor artifact instead of the full plugin entrypoint.
|
|
},
|
|
});
|