WithConfigPath sets the absolute configuration file path used for reload watching. Parameters: - path: The absolute path to the configuration file Returns: - *Builder: The builder instance for method chaining
(path string)
| 102 | // Returns: |
| 103 | // - *Builder: The builder instance for method chaining |
| 104 | func (b *Builder) WithConfigPath(path string) *Builder { |
| 105 | b.configPath = path |
| 106 | return b |
| 107 | } |
| 108 | |
| 109 | // WithTokenClientProvider overrides the provider responsible for token-backed clients. |
| 110 | func (b *Builder) WithTokenClientProvider(provider TokenClientProvider) *Builder { |
no outgoing calls