(_ context.Context, prefix string)
| 427 | } |
| 428 | |
| 429 | func (n *Node) List(_ context.Context, prefix string) ([]engine.Entry, error) { |
| 430 | return n.dataStore.List(prefix), nil |
| 431 | } |
| 432 | |
| 433 | func (n *Node) applySnapshot(snapshot raftpb.Snapshot) error { |
| 434 | if raft.IsEmptySnap(snapshot) { |
nothing calls this directly
no test coverage detected