common.go 203 Bytes
Newer Older
1 2 3 4 5
package dial

import "time"

const (
6 7 8
	// DefaultTimeout is default duration the service will wait on startup to
	// make a connection to either the L1 or L2 backends.
	DefaultTimeout = 5 * time.Second
9
)