mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-26 09:32:01 +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()>;
|
||
|
|
||
|
}
|