BolusDataFlow.swift 190 B

12345678910
  1. enum Bolus {
  2. enum Config {}
  3. }
  4. protocol BolusProvider: Provider {
  5. var suggestion: Suggestion? { get }
  6. func pumpSettings() -> PumpSettings
  7. func fetchGlucose() -> [Readings]
  8. }