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