mirror of
https://github.com/opencloud-eu/opencloud.git
synced 2026-09-20 19:00:08 -04:00
Bumps [github.com/testcontainers/testcontainers-go/modules/opensearch](https://github.com/testcontainers/testcontainers-go) from 0.43.0 to 0.44.0. - [Release notes](https://github.com/testcontainers/testcontainers-go/releases) - [Commits](https://github.com/testcontainers/testcontainers-go/compare/v0.43.0...v0.44.0) --- updated-dependencies: - dependency-name: github.com/testcontainers/testcontainers-go/modules/opensearch dependency-version: 0.44.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
13 lines
251 B
Go
13 lines
251 B
Go
package tlsconfig
|
|
|
|
import "crypto/x509"
|
|
|
|
// SystemCertPool returns a copy of the system cert pool.
|
|
//
|
|
// Deprecated: use [x509.SystemCertPool] instead.
|
|
//
|
|
//go:fix inline
|
|
func SystemCertPool() (*x509.CertPool, error) {
|
|
return x509.SystemCertPool()
|
|
}
|