config := &tls.Config{ MinVersion: tls.VersionTLS12, }
config := &tls.Config{ MinVersion: tls.VersionTLS13, }
config := &tls.Config{ MinVersion: tls.VersionSSL30, }In this example, we set the `MinVersion` field to `tls.VersionSSL30`, which indicates that we only want connections that use SSL 3.0 or newer. However, it is not recommended to use SSL 3.0 due to security vulnerabilities. Each of these examples demonstrates how to use the `MinVersion` field of the `Config` struct in the `crypto/tls` package to specify the minimum TLS version for a connection.