| 28 | ) |
| 29 | |
| 30 | type HTTPPluginOptions struct { |
| 31 | Name string `ini:"name"` |
| 32 | Addr string `ini:"addr"` |
| 33 | Path string `ini:"path"` |
| 34 | Ops []string `ini:"ops"` |
| 35 | TLSVerify bool `ini:"tls_verify"` |
| 36 | } |
| 37 | |
| 38 | type httpPlugin struct { |
| 39 | options HTTPPluginOptions |
nothing calls this directly
no outgoing calls
no test coverage detected