- Introduced a new `Qtech` model with a corresponding TTP template for parsing QTECH devices. - Removed commented-out methods in the `Mikrotik` model to improve code clarity and maintainability.
8 lines
168 B
Python
8 lines
168 B
Python
from oxi.interfaces import register_parser
|
|
from oxi.interfaces.base import BaseDevice
|
|
|
|
|
|
@register_parser(["QTECH"])
|
|
class Qtech(BaseDevice):
|
|
template = "qtech.ttp"
|