(_ context.Context, key string)
| 401 | } |
| 402 | |
| 403 | func (n *Node) Get(_ context.Context, key string) ([]byte, error) { |
| 404 | return n.dataStore.Get(key) |
| 405 | } |
| 406 | |
| 407 | func (n *Node) Exists(_ context.Context, key string) (bool, error) { |
| 408 | _, err := n.dataStore.Get(key) |
nothing calls this directly
no test coverage detected