Skip to content

Commit

Permalink
refactor : controller 및 Application 네이밍 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
junpakPark committed Apr 19, 2023
1 parent 9e1e41f commit da4aa2d
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 RacingCarApplication {
public class WebRacingCarApplication {

public static void main(String[] args) {
SpringApplication.run(RacingCarApplication.class, args);
SpringApplication.run(WebRacingCarApplication.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 RacingCarApplicationTests {
class WebRacingCarApplicationTests {

@Test
void contextLoads() {
Expand Down

0 comments on commit da4aa2d

Please sign in to comment.