FrequencyPlansFetcher returns a fetch.Interface based on the frequency plans configuration. If no configuration source is set, this method returns nil, nil.
( ctx context.Context, httpClientProvider httpclient.Provider, )
| 526 | // FrequencyPlansFetcher returns a fetch.Interface based on the frequency plans configuration. |
| 527 | // If no configuration source is set, this method returns nil, nil. |
| 528 | func (c ServiceBase) FrequencyPlansFetcher( |
| 529 | ctx context.Context, httpClientProvider httpclient.Provider, |
| 530 | ) (fetch.Interface, error) { |
| 531 | return c.FrequencyPlans.Fetcher(ctx, c.Blob, httpClientProvider) |
| 532 | } |
| 533 | |
| 534 | // MQTT contains the listen and public addresses of an MQTT frontend. |
| 535 | type MQTT struct { |