Skip to content

Commit

Permalink
Merge pull request #6 from BBack-BBoo-Team/package
Browse files Browse the repository at this point in the history
[env] 초기 패키지 구조 구축 #5
  • Loading branch information
hongmj37 authored Jan 17, 2024
2 parents 4c997a6 + 1422c4e commit 02764df
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@

@RestController
@SpringBootApplication
public class SebadogBookServerApplication {
public class SebadogApp {

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

@GetMapping("/api-test")
Expand Down
1 change: 1 addition & 0 deletions src/main/java/com/book/app/infra/config/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Application 설정 클래스 모음 패키지
1 change: 1 addition & 0 deletions src/main/java/com/book/app/modules/account/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# 사용자 도메인
1 change: 1 addition & 0 deletions src/main/java/com/book/app/modules/books/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# 도서 도메인
1 change: 1 addition & 0 deletions src/main/java/com/book/app/modules/global/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# 도메인 공통 클래스 모음 패키지
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

@Profile("test")
@SpringBootTest
class SebadogBookServerApplicationTests {
class SebadogAppTests {

@Test
void contextLoads() {
Expand Down

0 comments on commit 02764df

Please sign in to comment.