2019-02-23 20:41:01 +01:00
|
|
|
class DataSourceInterface (object):
|
|
|
|
"""Interface for child interfaces that fetch data."""
|
|
|
|
def is_available (self):
|
2019-04-18 08:30:08 +02:00
|
|
|
raise NotImplementedError("Functions needs to be implemented")
|
|
|
|
|
|
|
|
def reload (self):
|
2019-02-23 20:41:01 +01:00
|
|
|
raise NotImplementedError("Functions needs to be implemented")
|