An Option applies optional changes to the Kong application.
| 14 | |
| 15 | // An Option applies optional changes to the Kong application. |
| 16 | type Option interface { |
| 17 | Apply(k *Kong) error |
| 18 | } |
| 19 | |
| 20 | // OptionFunc is function that adheres to the Option interface. |
| 21 | type OptionFunc func(k *Kong) error |
no outgoing calls
no test coverage detected
searching dependent graphs…