16 lines
504 B
Kotlin
16 lines
504 B
Kotlin
package com.gh.common.provider
|
|
|
|
import android.content.Context
|
|
import android.content.Intent
|
|
import com.therouter.router.Route
|
|
import com.gh.gamecenter.ConcernActivity
|
|
import com.gh.gamecenter.common.constant.RouteConsts
|
|
import com.gh.gamecenter.core.provider.IConcernProvider
|
|
|
|
@com.therouter.inject.ServiceProvider
|
|
class ConcernProviderImpl : IConcernProvider {
|
|
|
|
override fun getIntent(context: Context, entrance: String): Intent {
|
|
return ConcernActivity.getIntent(context, entrance)
|
|
}
|
|
} |