mirror of
https://github.com/grassrootseconomics/cic-custodial.git
synced 2024-11-10 01:06:46 +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
|
||
|
)
|