mirror of
https://github.com/boostorg/redis.git
synced 2026-01-19 04:42:09 +00:00
26 lines
590 B
C++
26 lines
590 B
C++
/* Copyright (c) 2018-2022 Marcelo Zimbres Silva (mzimbres@gmail.com)
|
|
*
|
|
* Distributed under the Boost Software License, Version 1.0. (See
|
|
* accompanying file LICENSE.txt)
|
|
*/
|
|
|
|
#ifndef AEDIS_HPP
|
|
#define AEDIS_HPP
|
|
|
|
#include <aedis/error.hpp>
|
|
#include <aedis/adapt.hpp>
|
|
#include <aedis/connection.hpp>
|
|
#include <aedis/resp3/request.hpp>
|
|
|
|
/** @defgroup high-level-api Reference
|
|
*
|
|
* This page contains the documentation of the Aedis high-level API.
|
|
*/
|
|
|
|
/** @defgroup low-level-api Reference
|
|
*
|
|
* This page contains the documentation of the Aedis low-level API.
|
|
*/
|
|
|
|
#endif // AEDIS_HPP
|