4 lines
193 B
Python
4 lines
193 B
Python
|
class DataSourceInterface (object):
|
||
|
"""Interface for child interfaces that fetch data."""
|
||
|
def is_available (self):
|
||
|
raise NotImplementedError("Functions needs to be implemented")
|