Created
December 21, 2022 06:06
-
-
Save javatodev/87e5730ad5eb36ad7737493fec35a799 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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