-
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
6 changed files
with
14 additions
and
15 deletions.
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
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 |
---|---|---|
@@ -1,8 +1,7 @@ | ||
pub mod create_reservation; | ||
pub mod reservation; | ||
pub mod reservation_request; | ||
pub mod user; | ||
|
||
#[allow(unused)] | ||
pub use create_reservation::CreateReservation; | ||
pub use reservation::Reservation; | ||
pub use reservation_request::ReservationRequest; | ||
pub use user::User; |
6 changes: 3 additions & 3 deletions
6
src/entities/create_reservation.rs → src/entities/reservation_request.rs
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
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
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 |
---|---|---|
@@ -1,13 +1,13 @@ | ||
pub mod create_reservation_request_service; | ||
pub mod database_service; | ||
pub mod message_service; | ||
pub mod reservation_message_service; | ||
pub mod reservation_request_service; | ||
pub mod reservation_service; | ||
pub mod user_service; | ||
|
||
pub use self::message_service::{GetOutboxService, SendReservationMessageService}; | ||
pub use self::reservation_message_service::ReservationMessageService; | ||
pub use create_reservation_request_service::CreateReservationRequestService; | ||
pub use database_service::ReservationDatabaseService; | ||
pub use reservation_request_service::ReservationRequestService; | ||
pub use reservation_service::ReservationService; | ||
pub use user_service::UserService; |
2 changes: 1 addition & 1 deletion
2
...ces/create_reservation_request_service.rs → src/services/reservation_request_service.rs
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