Lock represents a lock that can be locked and unlocked
| 20 | |
| 21 | // Lock represents a lock that can be locked and unlocked |
| 22 | type Lock interface { |
| 23 | Lock() |
| 24 | Unlock() |
| 25 | } |
| 26 | |
| 27 | type abstractWindowViewHandler func(*AbstractWindowView, Action) error |
| 28 |
no outgoing calls
no test coverage detected