AutotuneConfigDataFlow.swift 168 B

1234567891011
  1. import Combine
  2. enum AutotuneConfig {
  3. enum Config {}
  4. }
  5. protocol AutotuneConfigProvider: Provider {
  6. var autotune: Autotune? { get }
  7. func deleteAutotune()
  8. }