package com.medalllia.mxo.compose import com.medallia.mxo.BuildConfig import org.jetbrains.kotlin.compiler.plugin.AbstractCliOption import org.jetbrains.kotlin.compiler.plugin.CommandLineProcessor import org.jetbrains.kotlin.compiler.plugin.ExperimentalCompilerApi @OptIn(ExperimentalCompilerApi::class) class OrchestrationComposeCommandLineProcessor : CommandLineProcessor { // this is linked from gradle in the plugin id in the gradle plugin. it // needs to match for the kotlin compiler to include the plugin override val pluginId: String = BuildConfig.ORCHESTRATION_COMPOSE_KOTLIN_PLUGIN_ID override val pluginOptions: Collection = emptyList() }