mirror of
https://github.com/MontFerret/ferret.git
synced 2025-03-17 21:18:37 +02:00
29 lines
444 B
Go
29 lines
444 B
Go
package drivers
|
|
|
|
type (
|
|
Viewport struct {
|
|
Height int
|
|
Width int
|
|
ScaleFactor float64
|
|
Mobile bool
|
|
Landscape bool
|
|
}
|
|
|
|
Params struct {
|
|
URL string
|
|
UserAgent string
|
|
KeepCookies bool
|
|
Cookies HTTPCookies
|
|
Headers HTTPHeaders
|
|
Viewport *Viewport
|
|
}
|
|
|
|
ParseParams struct {
|
|
Content []byte
|
|
KeepCookies bool
|
|
Cookies HTTPCookies
|
|
Headers HTTPHeaders
|
|
Viewport *Viewport
|
|
}
|
|
)
|