mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-22 07:31:57 +00:00
97f2a2213e
* Move some code outside dbms/src folder * Fix paths
12 lines
135 B
C++
12 lines
135 B
C++
#pragma once
|
|
|
|
#include "ZooKeeper.h"
|
|
#include <functional>
|
|
|
|
namespace zkutil
|
|
{
|
|
|
|
using GetZooKeeper = std::function<ZooKeeperPtr()>;
|
|
|
|
}
|