mirror of
https://github.com/PiBrewing/craftbeerpi4.git
synced 2024-12-02 11:44:18 +01:00
11 lines
185 B
Python
11 lines
185 B
Python
|
class Step(object):
|
||
|
|
||
|
def __init__(self, key=None, cbpi=None):
|
||
|
self.cbpi = cbpi
|
||
|
self.id = key
|
||
|
|
||
|
async def run(self):
|
||
|
pass
|
||
|
|
||
|
def stop(self):
|
||
|
pass
|