123456789101112131415161718192021222324252627282930313233 |
- import UIKit
- public class PQBFConfig: NSObject {
- public static let shared = PQBFConfig()
-
- public var styleColor: styleColor = .green
-
- public let channelID: String = "AppStore"
-
- public var umAppkey: String = "60b9f95b4d0228352bbc87e0"
-
-
- public var buglyAppkey: String = "6c481442-aeb4-49ec-a2ae-21359bfef44a"
- override private init() {
- super.init()
- }
- override public func copy() -> Any {
- return self
- }
- override public func mutableCopy() -> Any {
- return self
- }
- }
|