BuildableConfig wraps parsed provider configuration and functionality to instantiate provider instances.
| 118 | // BuildableConfig wraps parsed provider configuration and functionality to |
| 119 | // instantiate provider instances. |
| 120 | type BuildableConfig struct { |
| 121 | name string |
| 122 | config []byte |
| 123 | starter func(BuildOptions) Provider |
| 124 | pStore *store |
| 125 | } |
| 126 | |
| 127 | // NewBuildableConfig creates a new BuildableConfig with the given arguments. |
| 128 | // Provider implementations are expected to invoke this function after parsing |
nothing calls this directly
no outgoing calls
no test coverage detected