| 100 | |
| 101 | template <typename... T> |
| 102 | inline std::string REFERENCES(T&&... args) |
| 103 | { |
| 104 | return strings::join("\n", std::forward<T>(args)..., "\n"); |
| 105 | } |
| 106 | |
| 107 | |
| 108 | // Help process for serving /help, /help/id, and /help/id/name (see |
no outgoing calls
no test coverage detected