18 lines
347 B
Swift
18 lines
347 B
Swift
//
|
|
// AppKeys.swift
|
|
// yinmeng-ios
|
|
//
|
|
// Created by MaiMang on 2024/2/29.
|
|
//
|
|
|
|
import Foundation
|
|
enum AppKeys {
|
|
#if DEBUG
|
|
static let nimAppid = "5d5a833a2d0ff1304a5d8bed53d2af5b"
|
|
static let api = "http://beta.api.ymlive.fun/"
|
|
#else
|
|
static let nimAppid = "5e76ec47632d86c30ce18eabfa332b6a"
|
|
static let api = "https://api.ymlive.fun/"
|
|
#endif
|
|
}
|