You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
447 B
15 lines
447 B
package allin.utils
|
|
|
|
import com.typesafe.config.ConfigFactory
|
|
import io.ktor.server.config.*
|
|
|
|
object AppConfig {
|
|
private val config: HoconApplicationConfig = HoconApplicationConfig(ConfigFactory.load())
|
|
val tokenManager = TokenManager.getInstance(config)
|
|
val regexChecker = RegexChecker()
|
|
val cryptManager = CryptManager()
|
|
val imageManager = ImageManager()
|
|
val urlManager = URLManager()
|
|
val logManager = LogManager()
|
|
}
|