mirror of
https://github.com/opencloud-eu/opencloud.git
synced 2026-04-24 04:58:31 -05:00
1fad9acf1a
Bumps [github.com/onsi/ginkgo/v2](https://github.com/onsi/ginkgo) from 2.17.1 to 2.17.2. - [Release notes](https://github.com/onsi/ginkgo/releases) - [Changelog](https://github.com/onsi/ginkgo/blob/master/CHANGELOG.md) - [Commits](https://github.com/onsi/ginkgo/compare/v2.17.1...v2.17.2) --- updated-dependencies: - dependency-name: github.com/onsi/ginkgo/v2 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
11 lines
136 B
Go
11 lines
136 B
Go
//go:build go1.8
|
|
// +build go1.8
|
|
|
|
package ws
|
|
|
|
import "crypto/tls"
|
|
|
|
func tlsCloneConfig(c *tls.Config) *tls.Config {
|
|
return c.Clone()
|
|
}
|