20 lines
338 B
Python
20 lines
338 B
Python
|
class BackupRestore(object):
|
||
|
|
||
|
options = object()
|
||
|
canceled = None
|
||
|
|
||
|
def get_restore_info(self, *args):
|
||
|
pass
|
||
|
|
||
|
def restore_do(self, *args):
|
||
|
pass
|
||
|
|
||
|
def get_restore_info(self, *args):
|
||
|
pass
|
||
|
|
||
|
def restore_info_verify(self, *args):
|
||
|
pass
|
||
|
|
||
|
def get_restore_summary(self, *args):
|
||
|
pass
|