initial commit

This commit is contained in:
2024-12-07 03:53:46 -05:00
commit cbd6682257
9 changed files with 370 additions and 0 deletions

12
browser.go Normal file
View File

@@ -0,0 +1,12 @@
package extractor
import (
"context"
"io"
)
type Browser interface {
io.Closer
Open(ctx context.Context, url string) (Source, error)
}