13 lines
142 B
Go
13 lines
142 B
Go
|
package extractor
|
||
|
|
||
|
import (
|
||
|
"context"
|
||
|
"io"
|
||
|
)
|
||
|
|
||
|
type Browser interface {
|
||
|
io.Closer
|
||
|
|
||
|
Open(ctx context.Context, url string) (Source, error)
|
||
|
}
|