|
15 | 15 | # ------------------------------------------------------------------------------ |
16 | 16 |
|
17 | 17 | from pyasic.miners.backends import BOSer |
18 | | -from pyasic.miners.device.models import S21, S21Pro |
| 18 | +from pyasic.miners.device.models import S21, S21Hydro, S21Plus, S21PlusHydro, S21Pro |
| 19 | + |
| 20 | +# ------------------------------------------------------------------------------ |
| 21 | +# Copyright 2022 Upstream Data Inc - |
| 22 | +# - |
| 23 | +# Licensed under the Apache License, Version 2.0 (the "License"); - |
| 24 | +# you may not use this file except in compliance with the License. - |
| 25 | +# You may obtain a copy of the License at - |
| 26 | +# - |
| 27 | +# http://www.apache.org/licenses/LICENSE-2.0 - |
| 28 | +# - |
| 29 | +# Unless required by applicable law or agreed to in writing, software - |
| 30 | +# distributed under the License is distributed on an "AS IS" BASIS, - |
| 31 | +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - |
| 32 | +# See the License for the specific language governing permissions and - |
| 33 | +# limitations under the License. - |
| 34 | +# ------------------------------------------------------------------------------ |
19 | 35 |
|
20 | 36 |
|
21 | 37 | class BOSMinerS21(BOSer, S21): |
22 | 38 | pass |
23 | 39 |
|
24 | 40 |
|
| 41 | +class BOSMinerS21Plus(BOSer, S21Plus): |
| 42 | + pass |
| 43 | + |
| 44 | + |
| 45 | +class BOSMinerS21PlusHydro(BOSer, S21PlusHydro): |
| 46 | + pass |
| 47 | + |
| 48 | + |
25 | 49 | class BOSMinerS21Pro(BOSer, S21Pro): |
26 | 50 | pass |
| 51 | + |
| 52 | + |
| 53 | +class BOSMinerS21Hydro(BOSer, S21Hydro): |
| 54 | + pass |
0 commit comments