removed some unused files

This commit is contained in:
Steve Dudenhoeffer 2024-12-23 18:24:14 -05:00
parent 567a9f9212
commit 276b7ad38d
2 changed files with 0 additions and 36 deletions

View File

@ -1,7 +0,0 @@
package extractor
import "context"
type Processor interface {
Process(ctx context.Context, src source) (source, error)
}

View File

@ -1,29 +0,0 @@
package extractor
import (
"io"
"strings"
)
type Source interface {
URL() string
String() string
Reader() io.Reader
}
type source struct {
sourceUrl string
content string
}
func (s source) URL() string {
return s.sourceUrl
}
func (s source) String() string {
return s.content
}
func (s source) Reader() io.Reader {
return strings.NewReader(s.content)
}