22 lines
379 B
Plaintext
22 lines
379 B
Plaintext
//
|
||
// YMConstant.m
|
||
// YUMI
|
||
//
|
||
// Created by YUMI on 2021/9/13.
|
||
//
|
||
|
||
#import "YUMIConstant.h"
|
||
|
||
@implementation YUMIConstant
|
||
|
||
/// 获取指定类型的配置值
|
||
NSString * const KeyWithType(Pi_KeyType type) {
|
||
// 参数加密签名Key(用于API请求签名)
|
||
if (type == KeyType_Sign) {
|
||
return @"rpbs6us1m8r2j9g6u06ff2bo18orwaya";
|
||
}
|
||
return @"";
|
||
}
|
||
|
||
@end
|