(key string)
| 111 | } |
| 112 | |
| 113 | func (b *Bridge) GetString(key string) string { |
| 114 | val, ok := b.Config.GetString(b.GetConfigKey(key)) |
| 115 | if !ok { |
| 116 | val, _ = b.Config.GetString("general." + key) |
| 117 | } |
| 118 | return val |
| 119 | } |
| 120 | |
| 121 | func (b *Bridge) GetStringSlice(key string) []string { |
| 122 | val, ok := b.Config.GetStringSlice(b.GetConfigKey(key)) |
nothing calls this directly
no test coverage detected