mirror of
https://github.com/SoPat712/YTLitePlus.git
synced 2025-10-29 20:10:41 -04:00
20 lines
328 B
Objective-C
20 lines
328 B
Objective-C
//
|
|
// FLEXCurlLogger.h
|
|
//
|
|
//
|
|
// Created by Ji Pei on 07/27/16
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
@interface FLEXNetworkCurlLogger : NSObject
|
|
|
|
/**
|
|
* Generates a cURL command equivalent to the given request.
|
|
*
|
|
* @param request The request to be translated
|
|
*/
|
|
+ (NSString *)curlCommandString:(NSURLRequest *)request;
|
|
|
|
@end
|