Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2026-04-20 07:58:58

0001 from pandaharvester.harvestercore.plugin_base import PluginBase
0002 
0003 
0004 # base file syncer
0005 class BaseFileSyncer(PluginBase):
0006     # constructor
0007     def __init__(self, **kwarg):
0008         PluginBase.__init__(self, **kwarg)
0009 
0010     # check whether to update
0011     def check(self):
0012         return True
0013 
0014     # update files
0015     def update(self):
0016         return True, ""