memgraph/include/communication/bolt/v1/states.hpp

21 lines
252 B
C++

#pragma once
#include "communication/bolt/v1/states/state.hpp"
#include "logging/log.hpp"
namespace bolt
{
class States
{
public:
States();
State::uptr handshake;
State::uptr init;
State::uptr executor;
State::uptr error;
};
}