aboutsummaryrefslogtreecommitdiff
path: root/src/interfaces/echo.cpp
blob: 9bbb42217b02687a219367a1fe9e9a8694b64212 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Copyright (c) 2021 The Bitcoin Core developers
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.

#include <interfaces/echo.h>

#include <memory>

namespace interfaces {
namespace {
class EchoImpl : public Echo
{
public:
    std::string echo(const std::string& echo) override { return echo; }
};
} // namespace
std::unique_ptr<Echo> MakeEcho() { return std::make_unique<EchoImpl>(); }
} // namespace interfaces