blob: c1aa36eeaa490e45dee5a3d475ddccb9c5b940ae [file] [log] [blame]
#import <Foundation/Foundation.h>
#import "HTTPResponse.h"
@interface HTTPRedirectResponse : NSObject <HTTPResponse>
{
NSString *redirectPath;
}
- (id)initWithPath:(NSString *)redirectPath;
@end