Files
memgraph/include/query/language/cypher/ast/start.hpp

14 lines
125 B
C++

#pragma once
#include "ast_node.hpp"
#include "queries.hpp"
namespace ast
{
struct Start : public AstNode<Start>
{
};
};