10 lines
271 B
Mathematica
10 lines
271 B
Mathematica
|
#import "NSURLRequest+DSL.h"
|
||
|
#import "LSHTTPRequestDSLRepresentation.h"
|
||
|
#import "NSURLRequest+LSHTTPRequest.h"
|
||
|
|
||
|
@implementation NSURLRequest (DSL)
|
||
|
- (NSString *)toNocillaDSL {
|
||
|
return [[[LSHTTPRequestDSLRepresentation alloc] initWithRequest:self] description];
|
||
|
}
|
||
|
@end
|