14 lines
397 B
Python
14 lines
397 B
Python
|
|
class SyncDB(object):
|
|
"""
|
|
Represents the database returned by airtime_mvc. We do not use a list or some other
|
|
fixed data structure because we might want to change the internal representation for
|
|
performance reasons later on.
|
|
"""
|
|
def __init__(self, source):
|
|
pass
|
|
def has_file(self, path):
|
|
return True
|
|
def file_mdata(self, path):
|
|
return None
|