Feature is an compose feature that can be started/stopped by a menu command
| 78 | |
| 79 | // Feature is an compose feature that can be started/stopped by a menu command |
| 80 | type Feature interface { |
| 81 | Start(context.Context) error |
| 82 | Stop() error |
| 83 | } |
| 84 | |
| 85 | type KEYBOARD_LOG_LEVEL int |
| 86 |
no outgoing calls
no test coverage detected