()
| 34 | } |
| 35 | |
| 36 | func NewConnectionConfig() *ConnectionConfig { |
| 37 | config := &ConnectionConfig{ |
| 38 | Key: InstanceKey{}, |
| 39 | } |
| 40 | config.ImpliedKey = &config.Key |
| 41 | return config |
| 42 | } |
| 43 | |
| 44 | // DuplicateCredentials creates a new connection config with given key and with same credentials as this config |
| 45 | func (con *ConnectionConfig) DuplicateCredentials(key InstanceKey) *ConnectionConfig { |
no outgoing calls
searching dependent graphs…