Summary: Initial for fork (in form of a c/p) form the current single node version. Once we finish HA we plan to re-link the files to the single node versions if they don't change. Reviewers: ipaljak, buda, mferencevic Reviewed By: ipaljak Subscribers: pullbot Differential Revision: https://phabricator.memgraph.io/D1705
14 lines
244 B
C++
14 lines
244 B
C++
#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
|