Files
picar/DecisionSystem/PaxosDecision/paxos_instance.py
2019-01-10 14:54:53 +10:30

14 lines
352 B
Python

'''
@author Michael Pivato
Much thanks to Tom Cocagne by providing basic paxos code
which was the basis of this module and algorithm.
Check out the original at: https://github.com/cocagne/paxos/blob/master/paxos/essential.py
'''
from learner import Learner
from acceptor import Acceptor
from proposer import Proposer
class PaxosInstance():
pass