gajim-plural/src/common/zeroconf/client_zeroconf.py

13 lines
227 B
Python
Raw Normal View History

2006-05-29 21:57:39 +02:00
from common import roster_zeroconf
class ClientZeroconf:
def __init__(self, zeroconf):
self.roster = roster_zeroconf.Roster(zeroconf)
def getRoster(self):
return self.roster.getRoster()
def send(self, str):
pass