Add Kivy mock network

This commit is contained in:
shekhar-cis 2022-08-30 16:26:22 +05:30
parent 99be6bbf73
commit 80656b3fac
Signed by untrusted user: shekhar-cis
GPG Key ID: F4F00AB04E83F9A7

18
src/mock/network.py Normal file
View File

@ -0,0 +1,18 @@
# 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 ()