mirror of
https://github.com/boostorg/redis.git
synced 2026-02-09 11:22:22 +00:00
23 lines
567 B
C++
23 lines
567 B
C++
/* Copyright (c) 2019 - 2020 Marcelo Zimbres Silva (mzimbres at gmail dot com)
|
|
*
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <boost/asio.hpp>
|
|
|
|
namespace aedis {
|
|
namespace net = boost::asio;
|
|
namespace ip = net::ip;
|
|
using tcp = ip::tcp;
|
|
}
|
|
|
|
#include <aedis/read.hpp>
|
|
#include <aedis/request.hpp>
|
|
#include <aedis/response.hpp>
|
|
#include <aedis/version.hpp>
|
|
#include <aedis/write.hpp>
|