You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
328 B

  1. //
  2. // FLEXCurlLogger.h
  3. //
  4. //
  5. // Created by Ji Pei on 07/27/16
  6. //
  7. #import <Foundation/Foundation.h>
  8. @interface FLEXNetworkCurlLogger : NSObject
  9. /**
  10. * Generates a cURL command equivalent to the given request.
  11. *
  12. * @param request The request to be translated
  13. */
  14. + (NSString *)curlCommandString:(NSURLRequest *)request;
  15. @end