mirror of
https://github.com/dsward2/macSVG.git
synced 2026-05-28 00:20:58 +02:00
9 lines
297 B
Objective-C
Executable File
9 lines
297 B
Objective-C
Executable File
#import "HTTPResponse.h"
|
|
|
|
@interface PUTResponse : NSObject <HTTPResponse> {
|
|
NSInteger _status;
|
|
}
|
|
- (id) initWithFilePath:(NSString*)path headers:(NSDictionary*)headers bodyData:(NSData*)body;
|
|
- (id) initWithFilePath:(NSString*)path headers:(NSDictionary*)headers bodyFile:(NSString*)body;
|
|
@end
|