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