mirror of
https://github.com/cwinfo/matterbridge.git
synced 2024-11-10 13:20:27 +00:00
12 lines
289 B
Go
12 lines
289 B
Go
|
package cfg
|
||
|
|
||
|
// noCopy may be embedded into structs which must not be copied
|
||
|
// after the first use.
|
||
|
//
|
||
|
// See https://golang.org/issues/8005#issuecomment-190753527
|
||
|
// for details.
|
||
|
type noCopy struct{}
|
||
|
|
||
|
// Lock is a no-op used by -copylocks checker from `go vet`.
|
||
|
func (*noCopy) Lock() {}
|