| 12345678910111213141516 |
- import Combine
- extension AutotuneConfig {
- final class Provider: BaseProvider, AutotuneConfigProvider {
- @Injected() private var apsManager: APSManager!
- var autotune: Autotune? {
- storage.retrieve(OpenAPS.Settings.autotune, as: Autotune.self)
- }
- func deleteAutotune() {
- storage.remove(OpenAPS.Settings.autotune)
- }
- }
- }
|