KMServerConfig.swift 354 B

12345678910111213141516171819
  1. //
  2. // KMServerConfig.swift
  3. // PDF Reader Pro
  4. //
  5. // Created by Niehaoyu on 2024/12/16.
  6. //
  7. import Cocoa
  8. class KMServerConfig: NSObject {
  9. class func isConnectionAvailable() -> Bool {
  10. if Reachability.forInternetConnection().currentReachabilityStatus().rawValue == 0 {
  11. return false
  12. }
  13. return true
  14. }
  15. }