1 // Package transport provides functionality for managing gRPC connections and communication
2 // in the Yandex Cloud Go SDK. It includes interfaces and implementations for connection
3 // management, endpoint resolution, and connection pooling.
4 //
5 // The package contains the following subpackages:
6 // - grpc: Implements gRPC-specific functionality including connection pooling and client management
7 // - middleware: Provides interceptors and middleware components for extending gRPC functionality
8 //
9 // Key components in the main package:
10 // - Connector: Interface for retrieving gRPC client connections
11 // - ConnectorImpl: Implementation of the Connector interface with connection pooling
12 // - SingleConnector: Simplified connector for single endpoint scenarios
13 package transport
14