mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-18 04:12:19 +00:00
d97b2edc7c
* Make separate libs Common/ZooKeeper and Common/ConfigProcessor renamed: dbms/src/Common/StringUtils.h -> dbms/src/Common/StringUtils/StringUtils.h * Fix space * Fix data in system.build_options * merge * merge
12 lines
135 B
C++
12 lines
135 B
C++
#pragma once
|
|
|
|
#include "ZooKeeper.h"
|
|
#include <functional>
|
|
|
|
namespace zkutil
|
|
{
|
|
|
|
using GetZooKeeper = std::function<ZooKeeperPtr()>;
|
|
|
|
}
|