mirror of
https://github.com/gotenberg/gotenberg.git
synced 2026-08-08 08:32:16 +01:00
8 lines
199 B
Go
8 lines
199 B
Go
package printer
|
|
|
|
// Printer is a type that can create a PDF file from a source.
|
|
// The source is defined in the underlying implementation.
|
|
type Printer interface {
|
|
Print(destination string) error
|
|
}
|