mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-12 02:23:14 +00:00
12 lines
142 B
C++
12 lines
142 B
C++
#pragma once
|
|
|
|
#include <zkutil/ZooKeeper.h>
|
|
#include <functional>
|
|
|
|
namespace zkutil
|
|
{
|
|
|
|
using GetZooKeeper = std::function<ZooKeeperPtr()>;
|
|
|
|
}
|