mirror of
https://github.com/fleetdm/fleet
synced 2026-05-23 08:58:41 +00:00
8 lines
183 B
Go
8 lines
183 B
Go
|
|
// Package http provides HTTP types for bounded contexts.
|
||
|
|
package http
|
||
|
|
|
||
|
|
// Errorer is implemented by response types that may contain errors.
|
||
|
|
type Errorer interface {
|
||
|
|
Error() error
|
||
|
|
}
|