gitee.com/sy_183/go-common@v1.0.5-0.20231205030221-958cfe129b47/lock/lock-wrapper.go (about)

     1  package lock
     2  
     3  import "sync"
     4  
     5  type LockWrapper[T any] struct {
     6  	Elem T
     7  	sync.Mutex
     8  }