()
| 46 | } |
| 47 | |
| 48 | func (dc *DataConnection) ExpandConnectionString() { |
| 49 | if strings.HasPrefix(dc.ConnectionString, "$") { |
| 50 | dc.ConnectionString = os.ExpandEnv(dc.ConnectionString) |
| 51 | } |
| 52 | } |
| 53 | |
| 54 | type Join struct { |
| 55 | Type string `yaml:"type" json:"type"` |
no outgoing calls
no test coverage detected