memgraph/src/database/graph_db_accessor.hpp
Matej Ferencevic 111dd8bf19 Remove distributed
Reviewers: teon.banek

Reviewed By: teon.banek

Subscribers: pullbot

Differential Revision: https://phabricator.memgraph.io/D2213
2019-07-17 15:23:42 +02:00

10 lines
187 B
C++

#pragma once
#ifdef MG_SINGLE_NODE
#include "database/single_node/graph_db_accessor.hpp"
#endif
#ifdef MG_SINGLE_NODE_HA
#include "database/single_node_ha/graph_db_accessor.hpp"
#endif