| 1 | #include "mtx/responses/empty.hpp" |
|---|---|
| 2 | |
| 3 | namespace mtx { |
| 4 | namespace responses { |
| 5 | |
| 6 | // Provides a deserialization function to use when empty responses are returned from the server |
| 7 | void |
| 8 | from_json(const nlohmann::json &, Empty &) |
| 9 | { |
| 10 | } |
| 11 | } |
| 12 | } |
| 13 |