memgraph/speedy/http/version.hpp

16 lines
182 B
C++

#ifndef UVMACHINE_HTTP_HTTPVERSION_HPP
#define UVMACHINE_HTTP_HTTPVERSION_HPP
namespace http
{
struct Version
{
unsigned short major;
unsigned short minor;
};
}
#endif