GetConfig retrieves a configuration from the map of configurations, given the key
(key string)
| 699 | |
| 700 | // GetConfig retrieves a configuration from the map of configurations, given the key |
| 701 | func (p *PgConfiguration) GetConfig(key string) string { |
| 702 | return p.configs[key] |
| 703 | } |
| 704 | |
| 705 | // CreatePostgresqlConfiguration creates the configuration from the settings |
| 706 | // and the default values |
no outgoing calls