Files
open-im-server/pkg/utils/lock.go
T

7 lines
68 B
Go
Raw Normal View History

2023-02-28 15:20:57 +08:00
package utils
type DistributedLock interface {
Lock()
UnLock()
}