BolusDataFlow.swift 318 B

123456789101112
  1. enum Bolus {
  2. enum Config {}
  3. }
  4. protocol BolusProvider: Provider {
  5. func getPumpSettings() async -> PumpSettings
  6. func getBasalProfile() async -> [BasalProfileEntry]
  7. func getCarbRatios() async -> CarbRatios
  8. func getBGTarget() async -> BGTargets
  9. func getISFValues() async -> InsulinSensitivities
  10. }