memgraph/src/database/graph_db.hpp

14 lines
244 B
C++
Raw Normal View History

#pragma once
#ifdef MG_SINGLE_NODE
#include "database/single_node/graph_db.hpp"
#endif
#ifdef MG_SINGLE_NODE_HA
#include "database/single_node_ha/graph_db.hpp"
#endif
#ifdef MG_DISTRIBUTED
#include "database/distributed/graph_db.hpp"
#endif