mirror of
https://github.com/j3ssie/osmedeus.git
synced 2026-08-20 14:42:31 +02:00
25 lines
381 B
Python
25 lines
381 B
Python
import os
|
|
import sys
|
|
import shutil
|
|
|
|
|
|
sys.path.append(os.path.dirname(os.path.dirname(os.path.realpath(__file__))))
|
|
|
|
from lib.sender import send
|
|
from lib.core import utils
|
|
from lib.monitor import compare
|
|
|
|
'''
|
|
Only avaliable in pro version
|
|
'''
|
|
|
|
|
|
# return compare_path to options
|
|
def init_backup(options):
|
|
pass
|
|
|
|
|
|
# only keep 3 newest result
|
|
def clean_oldbackup(options):
|
|
pass
|