Option is an interface that specifies instrumentation configuration options.
| 2 | |
| 3 | // Option is an interface that specifies instrumentation configuration options. |
| 4 | type Option interface { |
| 5 | apply(*config) |
| 6 | } |
| 7 | |
| 8 | // optionFunc is a type of function that can be used to implement the Option interface. |
| 9 | // It takes a pointer to a config struct and modifies it. |
nothing calls this directly
no outgoing calls
no test coverage detected