(path string, data []byte)
| 15 | type Client interface { |
| 16 | Create(path string, data []byte) error |
| 17 | Update(path string, data []byte) error |
| 18 | Delete(path string) error |
| 19 | |
| 20 | Read(path string, must bool) ([]byte, error) |
no outgoing calls
no test coverage detected