1
0
mirror of https://github.com/charlienet/go-mixed.git synced 2025-07-17 16:12:42 +08:00
Files
go-mixed/locker/distributed_locker.go
2024-05-28 04:23:30 +08:00

8 lines
104 B
Go

package locker
import "context"
type DistributedLocker interface {
Unlock(context.Context, string)
}