Skip to content

Commit

Permalink
Move domain package
Browse files Browse the repository at this point in the history
  • Loading branch information
geminiKim committed Aug 19, 2024
1 parent 5e300c1 commit bc96714
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ package io.dodn.springboot.core.api.controller.v1

import io.dodn.springboot.core.api.controller.v1.request.ExampleRequestDto
import io.dodn.springboot.core.api.controller.v1.response.ExampleResponseDto
import io.dodn.springboot.core.api.domain.ExampleData
import io.dodn.springboot.core.api.domain.ExampleService
import io.dodn.springboot.core.api.support.response.ApiResponse
import io.dodn.springboot.core.domain.ExampleData
import io.dodn.springboot.core.domain.ExampleService
import org.springframework.web.bind.annotation.GetMapping
import org.springframework.web.bind.annotation.PathVariable
import org.springframework.web.bind.annotation.PostMapping
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package io.dodn.springboot.core.api.controller.v1.request

import io.dodn.springboot.core.api.domain.ExampleData
import io.dodn.springboot.core.domain.ExampleData

data class ExampleRequestDto(
val data: String,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package io.dodn.springboot.core.api.domain
package io.dodn.springboot.core.domain

data class ExampleData(
val value: String,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package io.dodn.springboot.core.api.domain
package io.dodn.springboot.core.domain

data class ExampleResult(
val data: String,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package io.dodn.springboot.core.api.domain
package io.dodn.springboot.core.domain

import org.springframework.stereotype.Service

Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
package io.dodn.springboot.core.api.controller.v1

import io.dodn.springboot.core.api.controller.v1.request.ExampleRequestDto
import io.dodn.springboot.core.api.domain.ExampleResult
import io.dodn.springboot.core.api.domain.ExampleService
import io.dodn.springboot.core.domain.ExampleResult
import io.dodn.springboot.core.domain.ExampleService
import io.dodn.springboot.test.api.RestDocsTest
import io.dodn.springboot.test.api.RestDocsUtils.requestPreprocessor
import io.dodn.springboot.test.api.RestDocsUtils.responsePreprocessor
Expand Down

0 comments on commit bc96714

Please sign in to comment.