702d080a1e
Google BK
12 lines
162 B
Python
12 lines
162 B
Python
from ..logger import getLogger
|
|
|
|
logger = getLogger(__name__)
|
|
|
|
|
|
class Startable():
|
|
async def start(self):
|
|
pass
|
|
|
|
async def stop(self):
|
|
pass
|