Constants.swift 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. extension OpenAPS {
  2. enum Bundle {
  3. static let iob = "bundle/iob"
  4. static let meal = "bundle/meal"
  5. static let autotunePrep = "bundle/autotune-prep"
  6. static let autotuneCore = "bundle/autotune-core"
  7. static let getLastGlucose = "bundle/glucose-get-last"
  8. static let basalSetTemp = "bundle/basal-set-temp"
  9. static let determineBasal = "bundle/determine-basal"
  10. static let autosens = "bundle/autosens"
  11. static let profile = "bundle/profile"
  12. }
  13. enum Prepare {
  14. static let iob = "prepare/iob"
  15. static let meal = "prepare/meal"
  16. static let autotunePrep = "prepare/autotune-prep"
  17. static let autotuneCore = "prepare/autotune-core"
  18. static let determineBasal = "prepare/determine-basal"
  19. static let autosens = "prepare/autosens"
  20. static let profile = "prepare/profile"
  21. }
  22. enum Settings {
  23. static let preferences = "preferences.json"
  24. static let autotune = "settings/autotune.json"
  25. static let autosense = "settings/autosense.json"
  26. }
  27. enum Function {
  28. static let freeaps = "freeaps"
  29. static let generate = "generate"
  30. static let tempBasalFunctions = "tempBasalFunctions"
  31. static let exportDefaults = "exportDefaults"
  32. }
  33. }