mirror of
https://github.com/stashapp/stash.git
synced 2025-12-17 05:47:37 +01:00
9 lines
119 B
Go
9 lines
119 B
Go
// +build go1.8
|
|
|
|
package ws
|
|
|
|
import "crypto/tls"
|
|
|
|
func tlsCloneConfig(c *tls.Config) *tls.Config {
|
|
return c.Clone()
|
|
}
|