| 10 | var _ hconf.DataSource = (*apolloConfig)(nil) |
| 11 | |
| 12 | type apolloConfig struct { |
| 13 | client agollo.Client |
| 14 | options *options |
| 15 | } |
| 16 | |
| 17 | func NewApolloConfig(opts ...Option) (hconf.DataSource, error) { |
| 18 | options := NewOptions(opts...) |
nothing calls this directly
no outgoing calls
no test coverage detected