feat(extract): add Text() dispatcher with md/txt passthrough

This commit is contained in:
Mathias Bergqvist
2026-04-23 15:45:20 +02:00
parent 820d1c93a7
commit 43a46d07e5
3 changed files with 87 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
// ingestion/internal/extract/pdf.go
package extract
import "fmt"
func extractPDF(_ string) (string, error) {
return "", fmt.Errorf("PDF extraction not implemented")
}