commonMain.io.github.rotbolt.flakerdata.flakerprefs.PrefDataStore.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of flaker-data Show documentation
Show all versions of flaker-data Show documentation
Persistence module for flaker.
package io.github.rotbolt.flakerdata.flakerprefs
import io.github.rotbolt.flakedomain.prefs.FlakerPrefs
import kotlinx.coroutines.flow.Flow
interface PrefDataStore {
fun getPrefs(): Flow
suspend fun savePrefs(flakerPrefs: FlakerPrefs)
}