ZeroTierOne/controller/Redis.hpp
Adam Ierymenko ba2a4a605c
clang-format
2025-07-03 11:26:23 -04:00

15 lines
No EOL
236 B
C++

#ifndef ZT_CONTROLLER_REDIS_HPP
#define ZT_CONTROLLER_REDIS_HPP
#include <string>
namespace ZeroTier {
struct RedisConfig {
std::string hostname;
int port;
std::string password;
bool clusterMode;
};
} // namespace ZeroTier
#endif