Skip to content

Instantly share code, notes, and snippets.

View Psijic's full-sized avatar
🐧
sudo

Viacheslav Alferov Psijic

🐧
sudo
View GitHub Profile
@Psijic
Psijic / DynamicConfig.kt
Last active January 9, 2021 18:13
Features Separating
class DynamicConfig {
companion object {
// Here could be your feature toggle request
var isTheFeatureAvailable = true
var isOtherFeatureAvailable = false
}
}