homehub/dev/vendor/vendor_test.py

17 lines
369 B
Python
Raw Normal View History

2021-08-26 10:33:15 +00:00
# -*- coding: utf-8 -*-
import logging
from homehub_backend.lib.services import BaseService
LOGGER = logging.getLogger('homehub.vendor_test')
class VendorTestService(BaseService):
KIND = 'VendorTestService'
async def start(self):
LOGGER.debug('VendorTestService.start()')
async def stop(self):
LOGGER.debug('VendorTestService.stop()')