Skip to content

Instantly share code, notes, and snippets.

@javatodev
Created December 21, 2022 06:06
Show Gist options
  • Save javatodev/87e5730ad5eb36ad7737493fec35a799 to your computer and use it in GitHub Desktop.
Save javatodev/87e5730ad5eb36ad7737493fec35a799 to your computer and use it in GitHub Desktop.
package com.javatodev.finance;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.config.server.EnableConfigServer;
@EnableConfigServer
@SpringBootApplication
public class InternetBankingConfigServerApplication {
public static void main(String[] args) {
SpringApplication.run(InternetBankingConfigServerApplication.class, args);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment