mirror of
https://github.com/grassrootseconomics/cic-custodial.git
synced 2024-11-22 14:16:47 +01:00
9 lines
160 B
Go
9 lines
160 B
Go
package util
|
|
|
|
import "time"
|
|
|
|
const (
|
|
// SLATimeout is the max duration after which any network call/context should be aborted.
|
|
SLATimeout = 5 * time.Second
|
|
)
|