예제 #1
0
파일: __init__.py 프로젝트: shish/chunker
class MetaNet(object):
    def __init__(self, core):
        self.core = core
        self.local = LocalPeerFinder(core)
        self.dht = DHTPeerFinder(core)
        #self.exchange = ExchangePeerFinder(core)

    def start(self):
        self.local.start()
        self.dht.start()