AutotuneConfigDataFlow.swift 225 B

123456789101112
  1. import Combine
  2. enum AutotuneConfig {
  3. enum Config {}
  4. }
  5. protocol AutotuneConfigProvider: Provider {
  6. var autotune: Autotune? { get }
  7. func runAutotune() -> AnyPublisher<Autotune?, Never>
  8. func deleteAutotune()
  9. }