org.octopusden.employee.EmployeeServiceApplication.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of employee-service Show documentation
Show all versions of employee-service Show documentation
Octopus module: employee-service
The newest version!
package org.octopusden.employee
import org.springframework.boot.SpringApplication
import org.springframework.boot.autoconfigure.SpringBootApplication
import org.springframework.boot.context.properties.ConfigurationPropertiesScan
import org.springframework.cloud.netflix.eureka.EnableEurekaClient
import org.springframework.context.annotation.Configuration
@EnableEurekaClient
@SpringBootApplication
@Configuration
@ConfigurationPropertiesScan
class EmployeeServiceApplication
fun main(args: Array) {
SpringApplication.run(EmployeeServiceApplication::class.java, *args)
}