Skip to content

Instantly share code, notes, and snippets.

@diegosilva13
Created December 17, 2017 18:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save diegosilva13/0b75706f2dd1c4200919092a4c5673fe to your computer and use it in GitHub Desktop.
Save diegosilva13/0b75706f2dd1c4200919092a4c5673fe to your computer and use it in GitHub Desktop.
package com.coderef.delivery;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.client.discovery.EnableDiscoveryClient;
import org.springframework.cloud.netflix.eureka.EnableEurekaClient;
@SpringBootApplication
@EnableEurekaClient
public class DeliveryOrderServiceApplication {
public static void main(String[] args) {
SpringApplication.run(DeliveryOrderServiceApplication.class, args);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment