| 5 | ) |
| 6 | |
| 7 | type Getter interface { |
| 8 | Get(path string) (values []string, rev int64) |
| 9 | Stat(path string) (ln int32, rev int64) |
| 10 | } |
| 11 | |
| 12 | // Retrieves the body stored in `g` at `path` and returns it. If `path` is a |
| 13 | // directory or does not exist, returns an empty string. |
no outgoing calls
no test coverage detected