Config

@Serializable
data class Config(val plugins: List<StartPlugin>)(source)

Contains just List of StartPlugins. In json this config should look like:

{
"plugins": [
"dev.inmo.micro_utils.startup.launcher.HelloWorldPlugin"
]
}

In the sample above HelloWorldPlugin will be loaded during startup of application

Constructors

Link copied to clipboard
constructor(plugins: List<StartPlugin>)

Properties

Link copied to clipboard