use of org.syncany.operations.watch.WatchOperation in project syncany by syncany.
the class WatchCommand method execute.
@Override
public int execute(String[] operationArgs) throws Exception {
WatchOperationOptions operationOptions = parseOptions(operationArgs);
new WatchOperation(config, operationOptions).execute();
return 0;
}
Aggregations