| 93 | // Helper for description of Authorization requirements. |
| 94 | template <typename... T> |
| 95 | inline std::string AUTHORIZATION(T&&... args) |
| 96 | { |
| 97 | return strings::join("\n", std::forward<T>(args)..., "\n"); |
| 98 | } |
| 99 | |
| 100 | |
| 101 | template <typename... T> |
nothing calls this directly
no outgoing calls
no test coverage detected