package oppen.tva.io.history import android.content.Context interface CacheInterface { fun getTabs(onTabs: (tabs: MutableList, activeIndex: Int)-> Unit) fun update(tabs: List, activeIndex: Int) companion object{ fun default(context: Context): CacheInterface{ return SimplePrefsCache(context) } } }