LoopPluginBundleKey.swift 790 B

123456789101112131415161718192021
  1. //
  2. // LoopPluginBundleKey.swift
  3. // LoopKit
  4. //
  5. // Created by Pete Schwamb on 7/24/19.
  6. // Copyright © 2019 LoopKit Authors. All rights reserved.
  7. //
  8. import Foundation
  9. public enum LoopPluginBundleKey: String {
  10. case pumpManagerDisplayName = "com.loopkit.Loop.PumpManagerDisplayName"
  11. case pumpManagerIdentifier = "com.loopkit.Loop.PumpManagerIdentifier"
  12. case cgmManagerDisplayName = "com.loopkit.Loop.CGMManagerDisplayName"
  13. case cgmManagerIdentifier = "com.loopkit.Loop.CGMManagerIdentifier"
  14. case serviceDisplayName = "com.loopkit.Loop.ServiceDisplayName"
  15. case serviceIdentifier = "com.loopkit.Loop.ServiceIdentifier"
  16. case extensionIdentifier = "com.loopkit.Loop.ExtensionIdentifier"
  17. case providesOnboarding = "com.loopkit.Loop.Plugin.ProvidesOnboarding"
  18. }