mirror of
https://github.com/gotenberg/gotenberg.git
synced 2026-08-11 18:02:14 +01:00
8 lines
146 B
Go
8 lines
146 B
Go
package handlers
|
|
|
|
type requestHasNoContentError struct{}
|
|
|
|
func (e *requestHasNoContentError) Error() string {
|
|
return "Request has not content"
|
|
}
|