-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* chore: SwaggerConfig 패키지 위치 변경 * feat: 기본적인 Sample 패키지 구조 생성
- Loading branch information
Showing
7 changed files
with
33 additions
and
1 deletion.
There are no files selected for viewing
2 changes: 1 addition & 1 deletion
2
.../configuration/swagger/SwaggerConfig.java → ...esslave/global/swagger/SwaggerConfig.java
This file contains 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
8 changes: 8 additions & 0 deletions
8
src/main/java/org/idiot/yesslave/sample/application/SampleService.java
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
package org.idiot.yesslave.sample.application; | ||
|
||
import org.springframework.stereotype.Service; | ||
|
||
@Service | ||
public class SampleService { | ||
|
||
} |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
package org.idiot.yesslave.sample.domain; | ||
|
||
public class Sample { | ||
} |
4 changes: 4 additions & 0 deletions
4
src/main/java/org/idiot/yesslave/sample/dto/SampleRequest.java
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
package org.idiot.yesslave.sample.dto; | ||
|
||
public class SampleRequest { | ||
} |
4 changes: 4 additions & 0 deletions
4
src/main/java/org/idiot/yesslave/sample/dto/SampleResponse.java
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
package org.idiot.yesslave.sample.dto; | ||
|
||
public class SampleResponse { | ||
} |
5 changes: 5 additions & 0 deletions
5
src/main/java/org/idiot/yesslave/sample/repository/SampleRepository.java
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
package org.idiot.yesslave.sample.repository; | ||
|
||
public interface SampleRepository { | ||
|
||
} |
7 changes: 7 additions & 0 deletions
7
src/main/java/org/idiot/yesslave/sample/ui/SampleController.java
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
package org.idiot.yesslave.sample.ui; | ||
|
||
import org.springframework.web.bind.annotation.RestController; | ||
|
||
@RestController | ||
public class SampleController { | ||
} |