Skip to content

Instantly share code, notes, and snippets.

Embed
What would you like to do?
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