added classes for all 3 types of miner API

This commit is contained in:
UpstreamData
2021-09-22 14:39:10 -06:00
parent c53562be6a
commit 46a9b38dd2

15
main.py
View File

@@ -33,3 +33,18 @@ class API:
# return the data # return the data
return data return data
class BMMiner(API):
def __int__(self, port, ip):
super.__init__(port, ip)
class CGMiner(API):
def __int__(self, port, ip):
super.__init__(port, ip)
class BOSMiner(API):
def __int__(self, port, ip):
super.__init__(port, ip)