Created
July 21, 2017 18:28
-
-
Save jaocamp/2b3b3e21fb5072999c6a36f00c641f61 to your computer and use it in GitHub Desktop.
Classe principal Delivery Eureka Server
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.coderef.delivery; | |
import org.springframework.boot.SpringApplication; | |
import org.springframework.boot.autoconfigure.SpringBootApplication; | |
import org.springframework.cloud.netflix.eureka.server.EnableEurekaServer; | |
@SpringBootApplication | |
@EnableEurekaServer | |
public class DeliveryEurekaServerApplication { | |
public static void main(String[] args) { | |
SpringApplication.run(DeliveryEurekaServerApplication.class, args); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment