package local import "context" type Locker interface{ Lock(context.Context,int)error UnLock(context.Context)error }