blob: 494b546eca289df782450be8286583de3d493e55 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#include "patchable_field.h"
#include "client.h"
namespace NYT::NDetail {
////////////////////////////////////////////////////////////////////////////////
const TNode::TMapType& GetDynamicConfiguration(const IClientPtr& client, const TString& configProfile)
{
return client->GetDynamicConfiguration(configProfile);
}
////////////////////////////////////////////////////////////////////////////////
} // namespace NYT::NDetail
|