mirror of
https://github.com/gotenberg/gotenberg.git
synced 2026-08-08 00:22:14 +01:00
9 lines
292 B
Go
9 lines
292 B
Go
package gotenberg
|
|
|
|
import "errors"
|
|
|
|
// ErrCancelGracefulShutdownContext tells that a module wants to abort a
|
|
// graceful shutdown and stops Gotenberg right away as there are no more
|
|
// ongoing processes.
|
|
var ErrCancelGracefulShutdownContext = errors.New("cancel graceful shutdown's context")
|