mirror of
https://github.com/gotenberg/gotenberg.git
synced 2026-08-08 08:32:16 +01:00
10 lines
154 B
Go
10 lines
154 B
Go
package printer
|
|
|
|
// NewURL returns a URL printer.
|
|
func NewURL(url string, opts *ChromeOptions) Printer {
|
|
return &chrome{
|
|
url: url,
|
|
opts: opts,
|
|
}
|
|
}
|