Option gets the option keyed by name.
(name string)
| 215 | |
| 216 | // Option gets the option keyed by name. |
| 217 | func (h Helper) Option(name string) any { |
| 218 | return h.options[name] |
| 219 | } |
| 220 | |
| 221 | // Caddyfiles returns the list of config files from |
| 222 | // which tokens in the current server block were loaded. |
no outgoing calls
no test coverage detected