14 lines
456 B
Kotlin
14 lines
456 B
Kotlin
package com.gh.common.provider
|
|
|
|
import android.content.Context
|
|
import com.therouter.router.Route
|
|
import com.gh.gamecenter.common.constant.RouteConsts
|
|
import com.gh.gamecenter.core.provider.ICommentManagerProvider
|
|
import com.gh.gamecenter.manager.CommentManager
|
|
|
|
@com.therouter.inject.ServiceProvider
|
|
class CommentManagerProviderImpl : ICommentManagerProvider {
|
|
override fun addUrl(ids: String) {
|
|
CommentManager.getInstance().addUrl(ids)
|
|
}
|
|
} |