()
| 21 | func (c *HttpConn) Read(p []byte) (n int, err error) { return c.in.Read(p) } |
| 22 | func (c *HttpConn) Write(d []byte) (n int, err error) { return c.out.Write(d) } |
| 23 | func (c *HttpConn) Close() error { return nil } |
| 24 | |
| 25 | type SimplePluginRes struct { |
| 26 | Name string `json:"name"` |
no outgoing calls
no test coverage detected