11 lines
149 B
Python
11 lines
149 B
Python
|
from backive.core.tool import AVAILABLE_TOOLS, register_tool
|
||
|
|
||
|
|
||
|
@register_tool("rsync")
|
||
|
class Rsync:
|
||
|
def __init__(self, options):
|
||
|
pass
|
||
|
|
||
|
|
||
|
|