12 lines
332 B
Python
12 lines
332 B
Python
from miners._backends import BMMiner # noqa - Ignore access to _module
|
|
from miners._types import S19Pro # noqa - Ignore access to _module
|
|
|
|
|
|
class BMMinerS19Pro(BMMiner, S19Pro):
|
|
def __init__(self, ip: str) -> None:
|
|
super().__init__(ip)
|
|
self.ip = ip
|
|
|
|
async def get_hostname(self) -> str:
|
|
return "?"
|