commonMain.app.softwork.serviceloader.ServiceLoader.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ksp-annotation Show documentation
Show all versions of ksp-annotation Show documentation
A Gradle plugin to generate and validate service loaders
The newest version!
package app.softwork.serviceloader
import kotlin.reflect.KClass
@Retention(AnnotationRetention.SOURCE)
@Target(AnnotationTarget.CLASS)
@OptIn(ExperimentalMultiplatform::class)
@OptionalExpectation
public expect annotation class ServiceLoader(
val forClass: KClass<*>
)