mirror of
https://github.com/gotenberg/gotenberg.git
synced 2026-08-13 19:02:15 +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"
|
|
}
|