2016-04-02 14:24:33 +08:00
|
|
|
//
|
|
|
|
// BSDiff.h
|
2019-11-16 00:31:30 +08:00
|
|
|
// RCTPushy
|
2016-04-02 14:24:33 +08:00
|
|
|
//
|
|
|
|
// Created by lvbingru on 16/4/2.
|
|
|
|
// Copyright © 2016年 erica. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
|
|
|
|
@interface BSDiff : NSObject
|
|
|
|
|
|
|
|
+ (BOOL)bsdiffPatch:(NSString *)path
|
|
|
|
origin:(NSString *)origin
|
|
|
|
toDestination:(NSString *)destination;
|
|
|
|
@end
|