Files
Rediska/rediska/cache/types.hpp
Nikita Astafyev 35a6349071
Some checks failed
Code Analysis / analysis (push) Failing after 2m59s
chore: initial commit
2025-12-30 22:34:58 +07:00

11 lines
243 B
C++

#pragma once
#include <expected>
#include <functional>
#include <optional>
#include "rediska/common/types.hpp"
namespace cache {
using CacheOpCallback = std::function<void(std::expected<std::optional<CacheValue>, RediskaReturnCode>)>;
}