12345678910111213 |
- # -*- coding: utf-8 -*-
- # !/usr/bin/env python
- import logging
- from apps.web.core.adapter.base import OnlineSmartBox
- logger = logging.getLogger(__name__)
- class DuobaoCar(OnlineSmartBox):
- def __init__(self, device):
- super(DuobaoCar, self).__init__(device)
|