mirror of
https://github.com/tahoe-lafs/tahoe-lafs.git
synced 2024-12-21 13:57:51 +00:00
10 lines
248 B
Python
10 lines
248 B
Python
|
|
from foolscap import Tub
|
|
from twisted.application import service
|
|
|
|
class Client(service.MultiService):
|
|
def __init__(self, queen_pburl):
|
|
service.MultiService.__init__(self)
|
|
self.queen_pburl = queen_pburl
|
|
self.tub = Tub()
|