Created
August 10, 2021 14:08
-
-
Save vaibhavgoyal09/6c92d50bc36afd0fddab5ff1f9fea118 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
interface DataStoreRepository { | |
suspend fun putString(key: String, value: String) | |
suspend fun putInt(key: String, value: Int) | |
suspend fun getString(key: String): String? | |
suspend fun getInt(key: String): Int? | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment