(action: T.Action)
| 2 | import { showOutput } from '../services/logger/output' |
| 3 | |
| 4 | export const onOpenLogs = async (action: T.Action): Promise<void> => { |
| 5 | const channel = action.payload.channel |
| 6 | await showOutput(channel) |
| 7 | } |
| 8 | |
| 9 | export default onOpenLogs |
nothing calls this directly
no test coverage detected