22 lines
424 B
Objective-C
22 lines
424 B
Objective-C
//
|
|
// Api+Main.h
|
|
// YUMI
|
|
//
|
|
// Created by zu on 2021/9/8.
|
|
//
|
|
|
|
#import "Api.h"
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface Api (Main)
|
|
|
|
+ (void)requestTicket:(HttpRequestHelperCompletion)completion access_token:(NSString *)accessToken issue_type:(NSString *)issueType;
|
|
|
|
+ (void)clientInitConfig:(HttpRequestHelperCompletion)complection;
|
|
//
|
|
+ (void)clientConfig:(HttpRequestHelperCompletion)completion;
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|