com.blr19c.falowp.bot.system.Log.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of falowp-bot-system Show documentation
Show all versions of falowp-bot-system Show documentation
FalowpBot system infrastructure
package com.blr19c.falowp.bot.system
import org.slf4j.Logger
import org.slf4j.LoggerFactory
interface Log {
fun Log.log(): Logger {
return LoggerFactory.getLogger(this::class.java)
}
}