12 lines
414 B
Kotlin
12 lines
414 B
Kotlin
package com.gh.common.provider
|
|
|
|
import android.content.Context
|
|
import com.gh.common.util.CheckLoginUtils
|
|
import com.gh.gamecenter.core.provider.ICheckLoginProvider
|
|
|
|
@com.therouter.inject.ServiceProvider
|
|
class CheckLoginProviderImpl : ICheckLoginProvider {
|
|
override fun checkLogin(context: Context, entrance: String, action: (() -> Unit)?) {
|
|
CheckLoginUtils.checkLogin(context, entrance, action)
|
|
}
|
|
} |