1234567891011121314151617181920212223 |
- //
- // KMMemberCenterConfig.swift
- // PDF Reader Pro
- //
- // Created by wanjun on 2024/10/21.
- //
- import Cocoa
- class KMMemberCenterConfig: NSObject {
- func activityBaseURL() -> String {
- // #if DEBUG
- // if kTestMode == 1{
- // return "http://test-store.kdan.cn:3019"
- // } else {
- // return "https://store.filmagepro.com:3018"
- // }
- // #else
- // return "https://store.filmagepro.com:3018"
- // #endif
- return "http://139.196.160.101:8081"
- }
- }
|