Exemplo n.º 1
0
 def backuper(self):
     return Backuper(self.config, self.persister)
Exemplo n.º 2
0
class BackupCli(object):
    def __init__(self, config):
        self.backer = Backuper(config)

    def backup(self):
        self.backer.backup(True)
Exemplo n.º 3
0
 def __init__(self, config):
     self.backer = Backuper(config)
Exemplo n.º 4
0
 def sync(self):
     self.mng.sync(self.limit)
     backuper = Backuper(self.config)
     backuper.backup()