(context.Context, *URI)
| 22 | |
| 23 | type Engine interface { |
| 24 | Get(context.Context, *URI) (Reader, error) |
| 25 | Put(context.Context, *URI) (io.WriteCloser, error) |
| 26 | PutIfNotExists(context.Context, *URI, []byte) error |
| 27 | Delete(context.Context, *URI) error |
no outgoing calls