Skip to content

Instantly share code, notes, and snippets.

@kamisrini
Created December 14, 2018 22:51
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 kamisrini/a78b0a3c2577a23385cf7395ac92bee5 to your computer and use it in GitHub Desktop.
Save kamisrini/a78b0a3c2577a23385cf7395ac92bee5 to your computer and use it in GitHub Desktop.
package com.aiaddicted.aiconfigserver;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.config.server.EnableConfigServer;
@EnableConfigServer
@SpringBootApplication
public class AiConfigServerApplication {
public static void main(String[] args) {
SpringApplication.run(AiConfigServerApplication.class, args);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment