jmsadair / raft

An implementation of the Raft consensus protocol.
MIT License
35 stars 3 forks source link

Made storage mechanisms optional parameters #51

Closed jmsadair closed 10 months ago

jmsadair commented 10 months ago

This PR makes the storage mechanisms and transport that raft uses optional. By default, the storage and transport that this package offers will be used. If the user wishes to use their own implementation, they may pass it as an option.