Files
real-e-party-iOS/YuMi/Global/YUMIConstant.m.backup
2025-10-17 14:52:29 +08:00

22 lines
379 B
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

//
// 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