| 22 | } |
| 23 | |
| 24 | type Leaser interface { |
| 25 | Type() string |
| 26 | AcquireLease(ctx context.Context) (*Lease, error) |
| 27 | RenewLease(ctx context.Context, lease *Lease) (*Lease, error) |
| 28 | ReleaseLease(ctx context.Context, lease *Lease) error |
| 29 | } |
| 30 | |
| 31 | type Lease struct { |
| 32 | Generation int64 `json:"generation"` |
no outgoing calls
no test coverage detected