ConfigEditorDataFlow.swift 174 B

123456789
  1. enum ConfigEditor {
  2. enum Config {}
  3. }
  4. protocol ConfigEditorProvider: Provider {
  5. func save(_ value: RawJSON, as file: String)
  6. func load(file: String) -> RawJSON
  7. }