package expirelock import "time" type ExpireLocker interface { Lock(time.Duration) error Unlock() error }