package pool

import 

// DCOptions is a Telegram data center connections pool options.
type DCOptions struct {
	// Logger is instance of zap.Logger. No logs by default.
	Logger *zap.Logger
	// MTProto options for connections.
	// Opened connection limit to the DC.
	MaxOpenConnections int64
}

func ( *DCOptions) () {
	if .Logger == nil {
		.Logger = zap.NewNop()
	}
	// It's okay to use zero value for MaxOpenConnections.
}