TDSRegionNetClient.h 358 B

123456789101112131415161718
  1. //
  2. // TDSRegionNetClient.h
  3. // TDSCommon
  4. //
  5. // Created by TapTap-David on 2020/11/18.
  6. //
  7. #import <Foundation/Foundation.h>
  8. #import <TapCommonSDK/TDSNetExecutor.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface TDSRegionNetClient : NSObject
  11. + (instancetype)sharedInstance;
  12. - (TDSNetExecutor *)doWithRequest:(TDSNetRequestModel *)request;
  13. @end
  14. NS_ASSUME_NONNULL_END