mirror of
https://github.com/charlienet/go-mixed.git
synced 2025-07-18 00:22:41 +08:00
8 lines
104 B
Go
8 lines
104 B
Go
package locker
|
|
|
|
import "context"
|
|
|
|
type DistributedLocker interface {
|
|
Unlock(context.Context, string)
|
|
}
|