Contacts/app/src/main/java/com/simplemobiletools/contacts/helpers/Config.kt
2017-12-10 11:04:45 +01:00

11 lines
283 B
Kotlin

package com.simplemobiletools.contacts.helpers
import android.content.Context
import com.simplemobiletools.commons.helpers.BaseConfig
class Config(context: Context) : BaseConfig(context) {
companion object {
fun newInstance(context: Context) = Config(context)
}
}