9 lines
283 B
Python
9 lines
283 B
Python
from drivers import OltDriver
|
|
|
|
class FiberhomeDriver(OltDriver):
|
|
def connect(self):
|
|
raise NotImplementedError("Driver Fiberhome ainda não implementado.")
|
|
|
|
def get_olt_stats(self):
|
|
raise NotImplementedError("Driver Fiberhome ainda não implementado (v2.0).")
|