mirror of
https://github.com/tahoe-lafs/tahoe-lafs.git
synced 2024-12-27 16:28:53 +00:00
17 lines
278 B
Python
17 lines
278 B
Python
|
|
class FakeStatus(object):
|
|
def __init__(self):
|
|
self.status = []
|
|
|
|
def setServiceParent(self, p):
|
|
pass
|
|
|
|
def get_status(self):
|
|
return self.status
|
|
|
|
def get_storage_index(self):
|
|
return None
|
|
|
|
def get_size(self):
|
|
return None
|