]> git.mxchange.org Git - quix0rs-apt-p2p.git/blob - apt_dht_Khashmir/DHT.py
Added the new DHT interface and a bare implmentation of it.
[quix0rs-apt-p2p.git] / apt_dht_Khashmir / DHT.py
1
2 from zope.interface import implements
3
4 from apt_dht.interfaces import IDHT
5
6 class DHT:
7     
8     implements(IDHT)
9     
10     def __init__(self):
11         pass