blob: 678840e77c8200690e083619c15da3d7250af0f0 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#include "connection.h"
#include "connection_impl.h"
namespace NYT::NApi::NRpcProxy {
////////////////////////////////////////////////////////////////////////////////
NApi::IConnectionPtr CreateConnection(
TConnectionConfigPtr config,
TConnectionOptions options)
{
return New<TConnection>(std::move(config), std::move(options));
}
////////////////////////////////////////////////////////////////////////////////
} // namespace NYT::NApi::NRpcProxy
|