Engine implements query.Engine by making HTTP calls to a remote msgvault server.
| 23 | |
| 24 | // Engine implements query.Engine by making HTTP calls to a remote msgvault server. |
| 25 | type Engine struct { |
| 26 | store *Store |
| 27 | } |
| 28 | |
| 29 | // Compile-time check that Engine implements query.Engine. |
| 30 | var _ query.Engine = (*Engine)(nil) |
nothing calls this directly
no outgoing calls
no test coverage detected