9 lines
171 B
Go
9 lines
171 B
Go
// ingestion/internal/extract/pdf.go
|
|
package extract
|
|
|
|
import "fmt"
|
|
|
|
func extractPDF(_ string) (string, error) {
|
|
return "", fmt.Errorf("PDF extraction not implemented")
|
|
}
|