mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-11-27 04:11:03 +00:00
75513575be
* store dependency's in git * since we vendor ... rm tech-depts * aad make target 'vendor' to update vendor folder (manual task)
11 lines
305 B
Go
11 lines
305 B
Go
// +build go1.8
|
|
|
|
package docker // import "docker.io/go-docker"
|
|
|
|
import "crypto/tls"
|
|
|
|
// tlsConfigClone returns a clone of tls.Config. This function is provided for
|
|
// compatibility for go1.7 that doesn't include this method in stdlib.
|
|
func tlsConfigClone(c *tls.Config) *tls.Config {
|
|
return c.Clone()
|
|
}
|