-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
41 additions
and
1 deletion.
There are no files selected for viewing
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
File renamed without changes.
12 changes: 12 additions & 0 deletions
12
cufit-api/src/main/kotlin/com/official/cufitapi/domain/api/ApiController.kt
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,12 @@ | ||
package com.official.cufitapi.domain.api | ||
|
||
import org.springframework.stereotype.Component | ||
import org.springframework.web.bind.annotation.RequestMapping | ||
import org.springframework.web.bind.annotation.RestController | ||
|
||
@Component | ||
@Target(AnnotationTarget.CLASS) | ||
@Retention(AnnotationRetention.RUNTIME) | ||
@RestController | ||
@RequestMapping("/api") | ||
annotation class ApiController() |
11 changes: 11 additions & 0 deletions
11
cufit-api/src/main/kotlin/com/official/cufitapi/domain/api/MemberApiController.kt
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,11 @@ | ||
package com.official.cufitapi.domain.api | ||
|
||
import org.springframework.web.bind.annotation.GetMapping | ||
|
||
@ApiController | ||
class MemberApiController { | ||
|
||
// 유저 정보 조회 | ||
|
||
|
||
} |
Empty file.
Empty file.
12 changes: 12 additions & 0 deletions
12
cufit-api/src/main/kotlin/com/official/cufitapi/domain/domain/member/Member.kt
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,12 @@ | ||
package com.official.cufitapi.domain.domain.member | ||
|
||
import jakarta.persistence.Entity | ||
import jakarta.persistence.GeneratedValue | ||
import jakarta.persistence.Id | ||
|
||
@Entity | ||
class Member( | ||
@Id @GeneratedValue | ||
val id: Long? = null | ||
) { | ||
} |
Empty file.
Empty file.
This file was deleted.
Oops, something went wrong.