jmsadair / raft

An implementation of the Raft consensus protocol.
MIT License
31 stars 2 forks source link

Made storage mechanisms optional parameters #51

Closed jmsadair closed 5 months ago

jmsadair commented 5 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.