| 25 | ) |
| 26 | |
| 27 | type DocumentBackend interface { |
| 28 | Get(context.Context, string) (*docs.Document, error) |
| 29 | BatchUpdate(context.Context, string, []*docs.Request) (*docs.BatchUpdateDocumentResponse, error) |
| 30 | } |
| 31 | |
| 32 | type Executor struct { |
| 33 | backend DocumentBackend |
no outgoing calls
no test coverage detected