Skip to content

Commit

Permalink
feat: edit locale
Browse files Browse the repository at this point in the history
  • Loading branch information
ray-yhc committed Oct 19, 2023
1 parent c61f8c9 commit 9ca9f4c
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions API-Server/src/main/java/swm/hkcc/LGTM/LgtmApplication.java
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,15 @@
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.boot.context.properties.ConfigurationPropertiesScan;

import java.util.Locale;

@ConfigurationPropertiesScan
@SpringBootApplication
public class LgtmApplication {

public static void main(String[] args) {
SpringApplication.run(LgtmApplication.class, args);
Locale.setDefault(Locale.KOREA);
}

}

0 comments on commit 9ca9f4c

Please sign in to comment.