12 lines
380 B
Kotlin
12 lines
380 B
Kotlin
package com.gh.common.provider
|
|
|
|
import com.gh.common.constant.Config
|
|
import com.gh.gamecenter.feature.entity.SettingsEntity
|
|
import com.gh.gamecenter.feature.provider.IConfigSettingProvider
|
|
|
|
@com.therouter.inject.ServiceProvider
|
|
class ConfigSettingProviderImpl : IConfigSettingProvider {
|
|
override fun getSettings(): SettingsEntity? {
|
|
return Config.getSettings()
|
|
}
|
|
} |