redis.hpp 731 B

12345678910111213141516171819202122232425262728
  1. /* Copyright (c) 2018-2023 Marcelo Zimbres Silva ([email protected])
  2. *
  3. * Distributed under the Boost Software License, Version 1.0. (See
  4. * accompanying file LICENSE.txt)
  5. */
  6. #ifndef BOOST_REDIS_HPP
  7. #define BOOST_REDIS_HPP
  8. #include <boost/redis/config.hpp>
  9. #include <boost/redis/error.hpp>
  10. #include <boost/redis/connection.hpp>
  11. #include <boost/redis/request.hpp>
  12. #include <boost/redis/response.hpp>
  13. #include <boost/redis/ignore.hpp>
  14. #include <boost/redis/logger.hpp>
  15. /** @defgroup high-level-api Reference
  16. *
  17. * This page contains the documentation of the Aedis high-level API.
  18. */
  19. /** @defgroup low-level-api Reference
  20. *
  21. * This page contains the documentation of the Aedis low-level API.
  22. */
  23. #endif // BOOST_REDIS_HPP