(command string)
| 118 | } |
| 119 | |
| 120 | func isCustomCommand(command string) bool { |
| 121 | for _, c := range defaultCommands { |
| 122 | if c == command { |
| 123 | return false |
| 124 | } |
| 125 | } |
| 126 | return true |
| 127 | } |
| 128 | |
| 129 | func getCustomCommandName(command string, length int) string { |
| 130 | args := strings.Split(command, " ") |
no outgoing calls
no test coverage detected