12345678910111213141516171819 |
- //
- // KMServerConfig.swift
- // PDF Reader Pro
- //
- // Created by Niehaoyu on 2024/12/16.
- //
- import Cocoa
- class KMServerConfig: NSObject {
-
-
- class func isConnectionAvailable() -> Bool {
- if Reachability.forInternetConnection().currentReachabilityStatus().rawValue == 0 {
- return false
- }
- return true
- }
- }
|