com.blr19c.falowp.bot.system.plugin.PluginInfo.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.plugin
/**
* 插件信息
*/
data class PluginInfo(
/**
* 插件真实对象
*/
val instance: Any,
/**
* 插件信息
*/
val plugin: Plugin
) {
companion object {
fun empty(): PluginInfo {
return PluginInfo(Any(), Plugin(name = ""))
}
}
}