Impl is the interface that must be implemented by a raft server.
| 8 | |
| 9 | // Impl is the interface that must be implemented by a raft server. |
| 10 | type Impl struct { |
| 11 | m Master |
| 12 | } |
| 13 | |
| 14 | func (i *Impl) State() raft.RaftState { |
| 15 | return i.m.Raft.State() |
nothing calls this directly
no outgoing calls
no test coverage detected