Skip to content

Instantly share code, notes, and snippets.

@kaantas
Last active June 5, 2020 05:49
Show Gist options
  • Save kaantas/a23d9178bd33458c7180049cfb4e76f4 to your computer and use it in GitHub Desktop.
Save kaantas/a23d9178bd33458c7180049cfb4e76f4 to your computer and use it in GitHub Desktop.
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.config.server.EnableConfigServer;
@EnableConfigServer
@SpringBootApplication
public class DeliveryConfigServerApplication {
public static void main(String[] args) {
SpringApplication.run(DeliveryConfigServerApplication.class, args);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment