(message string, voiceCommand string)
| 177 | } |
| 178 | |
| 179 | func getVoiceCommand(message string, voiceCommand string) string { |
| 180 | if len(voiceCommand) == 0 { |
| 181 | return "" |
| 182 | } |
| 183 | return injectCommandWithMessage(voiceCommand, message) |
| 184 | } |
| 185 | |
| 186 | func getNotifyCommand(message string, notifyCommand string) string { |
| 187 | if len(notifyCommand) == 0 { |
no test coverage detected