Locker provides support for locking and unlocking things.
| 13 | |
| 14 | // Locker provides support for locking and unlocking things. |
| 15 | type Locker interface { |
| 16 | Lock() |
| 17 | Unlock() |
| 18 | } |
| 19 | |
| 20 | // MoveLocker provides support for moving and locking things. |
| 21 | type MoveLocker interface { |
no outgoing calls
no test coverage detected