开发版本-developer——01 first commit

This commit is contained in:
wbzhan
2019-07-08 18:24:03 +08:00
parent 5a10dfa182
commit 8693efe121
386 changed files with 7069 additions and 1951 deletions
@@ -0,0 +1,30 @@
//
// MtopService.h
// mtopext
//
// Created by 亿刀/禚来强 on 16/6/15.
// Copyright © 2016年 亿刀/禚来强. All rights reserved.
//
#import <Foundation/Foundation.h>
@class MtopExtRequest;
@protocol MtopLoginProtocol;
@protocol MtopAuthProtocol;
NS_ASSUME_NONNULL_BEGIN
@interface MtopService : NSObject
+ (instancetype)shareInstance;
- (void)installCustomLoginModule:(id<MtopLoginProtocol>)loginHandler;
- (void)installCustomAuthModule:(id<MtopAuthProtocol>)authHandler;
- (void)async_call:(MtopExtRequest *)request;
@end
NS_ASSUME_NONNULL_END