(ec plugin.ExecContext)
| 86 | } |
| 87 | |
| 88 | func NewChildRemoteContext(ec plugin.ExecContext) RemoteContext { |
| 89 | return &remoteContextImpl{ |
| 90 | parent: ec, |
| 91 | logger: ec.GetLogger(), |
| 92 | ctx: ec.GetContext(), |
| 93 | } |
| 94 | } |
| 95 | |
| 96 | func (r remoteContextImpl) GetConfig(name string) string { |
| 97 | return config.GetConfig().GetString(name) |
no test coverage detected