G7SensorPlugin.swift 515 B

1234567891011121314151617181920212223242526
  1. //
  2. // CGMBLEKitG7Plugin.swift
  3. // CGMBLEKitG7Plugin
  4. //
  5. // Created by Pete Schwamb on 9/24/22.
  6. // Copyright © 2022 LoopKit Authors. All rights reserved.
  7. //
  8. import os.log
  9. import LoopKitUI
  10. import G7SensorKit
  11. import G7SensorKitUI
  12. class G7SensorPlugin: NSObject, CGMManagerUIPlugin {
  13. private let log = OSLog(category: "G7Plugin")
  14. public var cgmManagerType: CGMManagerUI.Type? {
  15. return G7CGMManager.self
  16. }
  17. override init() {
  18. super.init()
  19. log.default("Instantiated")
  20. }
  21. }