19 lines
358 B
C
19 lines
358 B
C
|
//
|
||
|
// TDSRegionNetClient.h
|
||
|
// TDSCommon
|
||
|
//
|
||
|
// Created by TapTap-David on 2020/11/18.
|
||
|
//
|
||
|
|
||
|
#import <Foundation/Foundation.h>
|
||
|
#import <TapCommonSDK/TDSNetExecutor.h>
|
||
|
NS_ASSUME_NONNULL_BEGIN
|
||
|
|
||
|
@interface TDSRegionNetClient : NSObject
|
||
|
+ (instancetype)sharedInstance;
|
||
|
|
||
|
- (TDSNetExecutor *)doWithRequest:(TDSNetRequestModel *)request;
|
||
|
@end
|
||
|
|
||
|
NS_ASSUME_NONNULL_END
|