feat(workers): extract.image via Tesseract

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
This commit is contained in:
root
2026-06-01 05:00:21 +10:00
parent 1f0e9a5f1b
commit f2035c1de6
3 changed files with 58 additions and 1 deletions

View File

@@ -1,6 +1,7 @@
from . import echo, pdf
from . import echo, pdf, image
REGISTRY = {
echo.NAME: echo.handle,
pdf.NAME: pdf.handle,
image.NAME: image.handle,
}