This repository has been archived on 2025-02-05. You can view files and clone it, but cannot push or open issues or pull requests.
PyBitmessage-2025-02-05/src/mock/network.py

19 lines
317 B
Python

# pylint: disable=too-few-public-methods
"""
Mock Network
"""
class objectracker(object):
"""Mock object tracker"""
missingObjects = {}
class stats(object):
"""Mock network statics"""
@staticmethod
def connectedHostsList():
"""List of all the connected hosts"""
return ()