initial commit
This commit is contained in:
12
browser.go
Normal file
12
browser.go
Normal file
@@ -0,0 +1,12 @@
|
||||
package extractor
|
||||
|
||||
import (
|
||||
"context"
|
||||
"io"
|
||||
)
|
||||
|
||||
type Browser interface {
|
||||
io.Closer
|
||||
|
||||
Open(ctx context.Context, url string) (Source, error)
|
||||
}
|
Reference in New Issue
Block a user