Skip to content

Commit

Permalink
refactor: DifeApplication 이름 변경 (#48)
Browse files Browse the repository at this point in the history
- Mono로 합쳐짐에 따라, DifeApplication으로 메인 어플리케이션의 이름을
변경한다.
  • Loading branch information
seungholee-dev authored Apr 7, 2024
1 parent a44d326 commit 1b3bd56
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@
import org.springframework.boot.autoconfigure.SpringBootApplication;

@SpringBootApplication
public class MemberApplication {
public class DifeApplication {

public static void main(String[] args) {
SpringApplication.run(MemberApplication.class, args);
SpringApplication.run(DifeApplication.class, args);
}

}
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import org.springframework.boot.test.context.SpringBootTest;

@SpringBootTest
class MemberApplicationTests {
class DifeApplicationTests {

@Test
void contextLoads() {
Expand Down

0 comments on commit 1b3bd56

Please sign in to comment.