Skip to content

Instantly share code, notes, and snippets.

@juliuscanute
Created May 28, 2020 10:42
Show Gist options
  • Save juliuscanute/757408f834d6e520320f17a3268bf35f to your computer and use it in GitHub Desktop.
Save juliuscanute/757408f834d6e520320f17a3268bf35f to your computer and use it in GitHub Desktop.
Configuration Repository
/*..*/
fun saveConfig(key: String, value: Int) {
val userKey = getUserKey(key)
store[userKey] = StoreValue.IntValue(value = value)
settings.putInt(userKey, value)
}
/*..*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment