intStr converts an int to string for use as a CLI argument.
(n int)
| 7 | |
| 8 | // intStr converts an int to string for use as a CLI argument. |
| 9 | func intStr(n int) string { |
| 10 | return fmt.Sprintf("%d", n) |
| 11 | } |
| 12 | |
| 13 | // extractTopicID extracts the topic ID from an app_url like |
| 14 | // "http://host/topics/12345" or "http://host/topics/12345/...". |
no outgoing calls
no test coverage detected