Return subkeys of a collection(`key` is empty string) or a key. Pattern is an arbitrary string and may contain '*' and '?' wildcards. If a pattern does not include wildcards, the pattern is uses as a prefix.
(collection, pattern string)
| 48 | // Pattern is an arbitrary string and may contain '*' and '?' wildcards. |
| 49 | // If a pattern does not include wildcards, the pattern is uses as a prefix. |
| 50 | List(collection, pattern string) ([]string, error) |
| 51 | // Return subkeys with their values: map[key]value |
| 52 | GetAll(collection, pattern string) (map[string]string, error) |
| 53 | } |
no outgoing calls
no test coverage detected