-
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.
Merge pull request #22 from wafflestudio/feat/create-base-structure
Created base files
- Loading branch information
Showing
30 changed files
with
90 additions
and
0 deletions.
There are no files selected for viewing
3 changes: 3 additions & 0 deletions
3
src/main/kotlin/com/example/toyTeam6Airbnb/profile/controller/Profile.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,3 @@ | ||
package com.example.toyTeam6Airbnb.profile.controller | ||
|
||
class Profile |
3 changes: 3 additions & 0 deletions
3
src/main/kotlin/com/example/toyTeam6Airbnb/profile/controller/ProfileController.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,3 @@ | ||
package com.example.toyTeam6Airbnb.profile.controller | ||
|
||
class ProfileController |
3 changes: 3 additions & 0 deletions
3
src/main/kotlin/com/example/toyTeam6Airbnb/profile/persistence/ProfileEntity.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,3 @@ | ||
package com.example.toyTeam6Airbnb.profile.persistence | ||
|
||
class ProfileEntity |
3 changes: 3 additions & 0 deletions
3
src/main/kotlin/com/example/toyTeam6Airbnb/profile/persistence/ProfileRepository.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,3 @@ | ||
package com.example.toyTeam6Airbnb.profile.persistence | ||
|
||
interface ProfileRepository |
3 changes: 3 additions & 0 deletions
3
src/main/kotlin/com/example/toyTeam6Airbnb/profile/service/ProfileService.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,3 @@ | ||
package com.example.toyTeam6Airbnb.profile.service | ||
|
||
interface ProfileService |
3 changes: 3 additions & 0 deletions
3
src/main/kotlin/com/example/toyTeam6Airbnb/profile/service/ProfileServiceImpl.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,3 @@ | ||
package com.example.toyTeam6Airbnb.profile.service | ||
|
||
class ProfileServiceImpl |
3 changes: 3 additions & 0 deletions
3
src/main/kotlin/com/example/toyTeam6Airbnb/reservation/controller/Reservation.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,3 @@ | ||
package com.example.toyTeam6Airbnb.reservation.controller | ||
|
||
class Reservation |
3 changes: 3 additions & 0 deletions
3
src/main/kotlin/com/example/toyTeam6Airbnb/reservation/controller/ReservationController.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,3 @@ | ||
package com.example.toyTeam6Airbnb.reservation.controller | ||
|
||
class ReservationController |
3 changes: 3 additions & 0 deletions
3
src/main/kotlin/com/example/toyTeam6Airbnb/reservation/persistence/ReservationEntity.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,3 @@ | ||
package com.example.toyTeam6Airbnb.reservation.persistence | ||
|
||
class ReservationEntity |
3 changes: 3 additions & 0 deletions
3
src/main/kotlin/com/example/toyTeam6Airbnb/reservation/persistence/ReservationRepository.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,3 @@ | ||
package com.example.toyTeam6Airbnb.reservation.persistence | ||
|
||
interface ReservationRepository |
3 changes: 3 additions & 0 deletions
3
src/main/kotlin/com/example/toyTeam6Airbnb/reservation/service/ReservationService.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,3 @@ | ||
package com.example.toyTeam6Airbnb.reservation.service | ||
|
||
interface ReservationService |
3 changes: 3 additions & 0 deletions
3
src/main/kotlin/com/example/toyTeam6Airbnb/reservation/service/ReservationServiceImpl.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,3 @@ | ||
package com.example.toyTeam6Airbnb.reservation.service | ||
|
||
class ReservationServiceImpl |
3 changes: 3 additions & 0 deletions
3
src/main/kotlin/com/example/toyTeam6Airbnb/review/controller/Review.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,3 @@ | ||
package com.example.toyTeam6Airbnb.review.controller | ||
|
||
class Review |
3 changes: 3 additions & 0 deletions
3
src/main/kotlin/com/example/toyTeam6Airbnb/review/controller/ReviewController.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,3 @@ | ||
package com.example.toyTeam6Airbnb.review.controller | ||
|
||
class ReviewController |
3 changes: 3 additions & 0 deletions
3
src/main/kotlin/com/example/toyTeam6Airbnb/review/persistence/ReviewEntity.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,3 @@ | ||
package com.example.toyTeam6Airbnb.review.persistence | ||
|
||
class ReviewEntity |
3 changes: 3 additions & 0 deletions
3
src/main/kotlin/com/example/toyTeam6Airbnb/review/persistence/ReviewRepository.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,3 @@ | ||
package com.example.toyTeam6Airbnb.review.persistence | ||
|
||
interface ReviewRepository |
3 changes: 3 additions & 0 deletions
3
src/main/kotlin/com/example/toyTeam6Airbnb/review/service/ReviewService.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,3 @@ | ||
package com.example.toyTeam6Airbnb.review.service | ||
|
||
interface ReviewService |
3 changes: 3 additions & 0 deletions
3
src/main/kotlin/com/example/toyTeam6Airbnb/review/service/ReviewServiceImpl.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,3 @@ | ||
package com.example.toyTeam6Airbnb.review.service | ||
|
||
class ReviewServiceImpl |
3 changes: 3 additions & 0 deletions
3
src/main/kotlin/com/example/toyTeam6Airbnb/room/controller/Room.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,3 @@ | ||
package com.example.toyTeam6Airbnb.room.controller | ||
|
||
class Room |
3 changes: 3 additions & 0 deletions
3
src/main/kotlin/com/example/toyTeam6Airbnb/room/controller/RoomController.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,3 @@ | ||
package com.example.toyTeam6Airbnb.room.controller | ||
|
||
class RoomController |
3 changes: 3 additions & 0 deletions
3
src/main/kotlin/com/example/toyTeam6Airbnb/room/persistence/RoomEntity.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,3 @@ | ||
package com.example.toyTeam6Airbnb.room.persistence | ||
|
||
class RoomEntity |
3 changes: 3 additions & 0 deletions
3
src/main/kotlin/com/example/toyTeam6Airbnb/room/persistence/RoomRepository.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,3 @@ | ||
package com.example.toyTeam6Airbnb.room.persistence | ||
|
||
interface RoomRepository |
3 changes: 3 additions & 0 deletions
3
src/main/kotlin/com/example/toyTeam6Airbnb/room/service/RoomService.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,3 @@ | ||
package com.example.toyTeam6Airbnb.room.service | ||
|
||
interface RoomService |
3 changes: 3 additions & 0 deletions
3
src/main/kotlin/com/example/toyTeam6Airbnb/room/service/RoomServiceImpl.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,3 @@ | ||
package com.example.toyTeam6Airbnb.room.service | ||
|
||
class RoomServiceImpl |
3 changes: 3 additions & 0 deletions
3
src/main/kotlin/com/example/toyTeam6Airbnb/user/controller/User.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,3 @@ | ||
package com.example.toyTeam6Airbnb.user.controller | ||
|
||
class User |
3 changes: 3 additions & 0 deletions
3
src/main/kotlin/com/example/toyTeam6Airbnb/user/controller/UserController.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,3 @@ | ||
package com.example.toyTeam6Airbnb.user.controller | ||
|
||
class UserController |
3 changes: 3 additions & 0 deletions
3
src/main/kotlin/com/example/toyTeam6Airbnb/user/persistence/UserEntity.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,3 @@ | ||
package com.example.toyTeam6Airbnb.user.persistence | ||
|
||
class UserEntity |
3 changes: 3 additions & 0 deletions
3
src/main/kotlin/com/example/toyTeam6Airbnb/user/persistence/UserRepository.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,3 @@ | ||
package com.example.toyTeam6Airbnb.user.persistence | ||
|
||
interface UserRepository |
3 changes: 3 additions & 0 deletions
3
src/main/kotlin/com/example/toyTeam6Airbnb/user/service/UserService.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,3 @@ | ||
package com.example.toyTeam6Airbnb.user.service | ||
|
||
interface UserService |
3 changes: 3 additions & 0 deletions
3
src/main/kotlin/com/example/toyTeam6Airbnb/user/service/UserServiceImpl.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,3 @@ | ||
package com.example.toyTeam6Airbnb.user.service | ||
|
||
class UserServiceImpl |