Skip to content

Commit

Permalink
chore: YSL-4 프로젝트 패키지 구성 설정 (#2)
Browse files Browse the repository at this point in the history
* chore: SwaggerConfig 패키지 위치 변경
* feat: 기본적인 Sample 패키지 구조 생성
  • Loading branch information
beng9re authored Dec 17, 2023
1 parent 4bf3b6e commit e326bd5
Show file tree
Hide file tree
Showing 7 changed files with 33 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package org.idiot.yesslave.configuration.swagger;
package org.idiot.yesslave.global.swagger;

import io.swagger.v3.oas.models.OpenAPI;
import io.swagger.v3.oas.models.info.Info;
Expand Down
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 {

}
4 changes: 4 additions & 0 deletions src/main/java/org/idiot/yesslave/sample/domain/Sample.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
package org.idiot.yesslave.sample.domain;

public class Sample {
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
package org.idiot.yesslave.sample.dto;

public class SampleRequest {
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
package org.idiot.yesslave.sample.dto;

public class SampleResponse {
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
package org.idiot.yesslave.sample.repository;

public interface SampleRepository {

}
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 {
}

0 comments on commit e326bd5

Please sign in to comment.