KMAddBackgroundOperationQueue.swift 327 B

123456789101112131415
  1. //
  2. // KMAddBackgroundOperationQueue.swift
  3. // PDF Reader Pro
  4. //
  5. // Created by liujiajie on 2023/12/1.
  6. //
  7. import Foundation
  8. class KMAddBackgroundOperationQueue: KMOperationQueue{
  9. static let sharedQueue: KMAddBackgroundOperationQueue = {
  10. let queue = KMAddBackgroundOperationQueue()
  11. return queue
  12. }()
  13. }