mirror of
https://github.com/empayre/fleet.git
synced 2024-11-06 17:05:18 +00:00
12 lines
279 B
Go
12 lines
279 B
Go
// Package externalsvc provides types and functions to communicate with
|
|
// external services, typically via REST APIs.
|
|
package externalsvc
|
|
|
|
import "time"
|
|
|
|
const (
|
|
maxRetries = 5
|
|
retryBackoff = 300 * time.Millisecond
|
|
maxWaitForRetryAfter = 10 * time.Second
|
|
)
|