Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
MyPlugin::class
package kplugin.myplugin import kotly.plugin.KotlyPlugin class MyPlugin : KotlyPlugin() { override fun onEnable() { logger.info("Hello world!") } override fun onDisable() { logger.info("Bye!") } } MyPlugin::class
KotlyPlugin