added install file to do the basic install

This commit is contained in:
UpstreamData
2022-03-25 15:29:30 -06:00
parent e1383f2002
commit 7a098b1c7e
3 changed files with 220 additions and 21 deletions

View File

@@ -44,6 +44,10 @@ class BaseMiner:
logging.warning(f"{self} raised an exception: {e}")
raise e
async def send_file(self, src, dest):
conn = self._get_ssh_connection()
await asyncssh.scp((conn, src), dest)
async def get_board_info(self):
return None