14 lines
352 B
Python
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 |