mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-18 21:51:57 +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()>;
|
||
|
|
||
|
}
|