All Downloads are FREE. Search and download functionalities are using the official Maven repository.

pl.allegro.tech.servicemesh.envoycontrol.EnvoyControl.kt Maven / Gradle / Ivy

There is a newer version: 0.22.5
Show newest version
package pl.allegro.tech.servicemesh.envoycontrol

import org.springframework.boot.CommandLineRunner
import org.springframework.boot.SpringApplication
import org.springframework.boot.autoconfigure.SpringBootApplication

@SpringBootApplication
class EnvoyControl(
    val controlPlane: ControlPlane
) : CommandLineRunner {

    override fun run(vararg args: String?) {
        controlPlane.start()
    }

    companion object {
        @JvmStatic
        fun main(args: Array) {
            SpringApplication.run(EnvoyControl::class.java, *args)
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy