Files
yingmeng-ios-switf/yinmeng-ios/Base/Utils/AppKeys.swift

22 lines
570 B
Swift
Raw Normal View History

2024-02-29 23:49:12 +08:00
//
// AppKeys.swift
// yinmeng-ios
//
2024-03-05 14:04:09 +08:00
// Created by yinmeng on 2024/2/29.
2024-02-29 23:49:12 +08:00
//
import Foundation
enum AppKeys {
2024-07-18 10:50:15 +08:00
#if DEBUG
static let nimAppid = "5d5a833a2d0ff1304a5d8bed53d2af5b"
static let api = "http://beta.api.ymlive.fun/"
static let agoraKey = "5b4d929b6c4e4af190550c4a2ec5cd4c"
static let H5_URL = "http://beta.api.ymlive.fun"
#else
2024-02-29 23:49:12 +08:00
static let nimAppid = "5e76ec47632d86c30ce18eabfa332b6a"
static let api = "https://api.ymlive.fun/"
2024-03-22 15:46:25 +08:00
static let agoraKey = "5b4d929b6c4e4af190550c4a2ec5cd4c"
2024-03-28 19:56:25 +08:00
static let H5_URL = "https://h5.ymlive.fun"
2024-07-18 10:50:15 +08:00
#endif
2024-02-29 23:49:12 +08:00
}