completed bmminer api and moved APIs to package

This commit is contained in:
UpstreamData
2021-09-23 10:34:39 -06:00
parent 400f816e17
commit e82b7ec9bf
5 changed files with 272 additions and 162 deletions

7
API/cgminer.py Normal file
View File

@@ -0,0 +1,7 @@
from API import BaseMinerAPI
class CGMinerAPI(BaseMinerAPI):
def __init__(self, ip, port=4028):
super().__init__(ip, port)