enhance: Base controller for compose with presenter

This commit is contained in:
ziro 2024-01-11 19:54:32 +07:00
parent e4967ca7a5
commit 680f7af111
Signed by: null2264
GPG key ID: BA64F8B60AF3EFB6

View file

@ -0,0 +1,10 @@
package eu.kanade.tachiyomi.ui.base.controller
import android.os.Bundle
import eu.kanade.tachiyomi.ui.base.presenter.BaseCoroutinePresenter
abstract class BaseCoroutineComposeController<PS : BaseCoroutinePresenter<*>>(bundle: Bundle? = null) :
BaseComposeController(bundle) {
abstract val presenter: PS
}