TreatmentsDataFlow.swift 328 B

123456789101112
  1. enum Treatments {
  2. enum Config {}
  3. }
  4. protocol TreatmentsProvider: 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. }