(now time.Time, details ...LockDetails)
| 27 | // of host operating system convention. |
| 28 | type LockSystem interface { |
| 29 | Create(now time.Time, details ...LockDetails) ([]string, error) |
| 30 | Unlock(now time.Time, tokens ...string) error |
| 31 | Confirm(now time.Time, requests LockInfo) (func(), string, error) |
| 32 | Refresh(now time.Time, duration time.Duration, token string) (LockDetails, error) |
nothing calls this directly
no outgoing calls
no test coverage detected