package common import ( "github.com/pkg/errors" "time" ) // DefaultTimeout is the default duration to wait for enqueuing/dequeuing // to/from routes. const DefaultTimeout = 30 * time.Second // ErrPeerWithSameIDExists signifies that a peer with the same ID already exist. var ErrPeerWithSameIDExists = errors.New("ready with the same ID already exists")