├── .github ├── ISSUE_TEMPLATE │ └── trinap-issue-template.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── .swiftlint.yml ├── FirestoreService └── Sources │ └── FireStore │ ├── DefaultFirebaseStoreService.swift │ ├── FireStoreCollectionName.swift │ └── FirebaseStoreService.swift ├── Gemfile ├── Gemfile.lock ├── LocationCache └── Sources │ ├── Cache │ ├── DiskLocationCache.swift │ ├── LocationCacheProtocol.swift │ └── MemoryLocationCache.swift │ ├── Extension │ └── CLPlacemark+Address.swift │ └── General │ ├── CLGeocoder+Cache.swift │ ├── LocationCacheError.swift │ └── LocationCacheWrapper.swift ├── Plugins └── Trinap │ ├── Package.swift │ ├── Plugin.swift │ ├── ProjectDescriptionHelpers │ └── LocalHelper.swift │ └── Sources │ └── tuist-my-cli │ └── main.swift ├── Project.swift ├── Queenfisher └── Sources │ ├── General │ └── Queenfisher.swift │ ├── ImageCache │ ├── CacheableImage.swift │ ├── ImageCache.swift │ ├── ImageCacheConfig.swift │ ├── ImageCacheError.swift │ ├── ImageCacheImplements.swift │ ├── ImageCacheProtocol.swift │ ├── ImageCacheStorage.swift │ └── ImageDownloader.swift │ └── View │ ├── Image+Downsample.swift │ └── ImageView+QF.swift ├── README.md ├── Scripts ├── SwiftLintRunScript.sh └── UpdatePackageRunScript.sh ├── Than └── Sources │ └── Than.swift ├── Trinap.entitlements ├── Trinap ├── Resources │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── AppIcon.png │ │ │ └── Contents.json │ │ ├── Colors │ │ │ ├── Blacks │ │ │ │ ├── Background.colorset │ │ │ │ │ └── Contents.json │ │ │ │ ├── Black.colorset │ │ │ │ │ └── Contents.json │ │ │ │ ├── Border.colorset │ │ │ │ │ └── Contents.json │ │ │ │ ├── Contents.json │ │ │ │ ├── Disabled.colorset │ │ │ │ │ └── Contents.json │ │ │ │ ├── Gray20.colorset │ │ │ │ │ └── Contents.json │ │ │ │ ├── Gray40.colorset │ │ │ │ │ └── Contents.json │ │ │ │ ├── Subtext.colorset │ │ │ │ │ └── Contents.json │ │ │ │ ├── Subtext2.colorset │ │ │ │ │ └── Contents.json │ │ │ │ └── White.colorset │ │ │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ ├── Error.colorset │ │ │ │ └── Contents.json │ │ │ ├── Primary.colorset │ │ │ │ └── Contents.json │ │ │ ├── Secondary.colorset │ │ │ │ └── Contents.json │ │ │ ├── Sub1.colorset │ │ │ │ └── Contents.json │ │ │ └── Sub2.colorset │ │ │ │ └── Contents.json │ │ ├── Contents.json │ │ └── Images │ │ │ ├── Contents.json │ │ │ ├── CustomerPin.imageset │ │ │ ├── Contents.json │ │ │ ├── CustomerPin.png │ │ │ ├── CustomerPin@2x.png │ │ │ └── CustomerPin@3x.png │ │ │ ├── CustomerTracked.imageset │ │ │ ├── Contents.json │ │ │ ├── CustomerTracked.png │ │ │ ├── CustomerTracked@2x.png │ │ │ └── CustomerTracked@3x.png │ │ │ ├── CustomerUntracked.imageset │ │ │ ├── Contents.json │ │ │ ├── CustomerUntracked.png │ │ │ ├── CustomerUntracked@2x.png │ │ │ └── CustomerUntracked@3x.png │ │ │ ├── LocationShareBackButton.imageset │ │ │ ├── Contents.json │ │ │ ├── LocationShareBackButton.png │ │ │ ├── LocationShareBackButton@2x.png │ │ │ └── LocationShareBackButton@3x.png │ │ │ ├── Logo_Vertical.imageset │ │ │ ├── Contents.json │ │ │ ├── logo_vertical.png │ │ │ ├── logo_vertical2x.png │ │ │ └── logo_vertical3x.png │ │ │ ├── PhotographerPin.imageset │ │ │ ├── Contents.json │ │ │ ├── PhotographerPin.png │ │ │ ├── PhotographerPin@2x.png │ │ │ └── PhotographerPin@3x.png │ │ │ ├── PhotographerTracked.imageset │ │ │ ├── Contents.json │ │ │ ├── PhotographerTracked.png │ │ │ ├── PhotographerTracked@2x.png │ │ │ └── PhotographerTracked@3x.png │ │ │ ├── PhotographerUntracked.imageset │ │ │ ├── Contents.json │ │ │ ├── PhotographerUntracked.png │ │ │ ├── PhotographerUntracked@2x.png │ │ │ └── PhotographerUntracked@3x.png │ │ │ ├── PlaceholderImage.imageset │ │ │ ├── Contents.json │ │ │ ├── PlaceholderImage.png │ │ │ ├── PlaceholderImage@2x.png │ │ │ └── PlaceholderImage@3x.png │ │ │ ├── chat.imageset │ │ │ ├── Contents.json │ │ │ ├── chat.png │ │ │ ├── chat@2x.png │ │ │ └── chat@3x.png │ │ │ ├── chat_plus.imageset │ │ │ ├── Chat=Plus.png │ │ │ ├── Chat=Plus@2x.png │ │ │ ├── Chat=Plus@3x.png │ │ │ └── Contents.json │ │ │ ├── checkBox.imageset │ │ │ ├── Contents.json │ │ │ ├── checkBox.png │ │ │ ├── checkBox@2x.png │ │ │ └── checkBox@3x.png │ │ │ ├── checkBox_fill.imageset │ │ │ ├── Contents.json │ │ │ ├── checkBox_fill.png │ │ │ ├── checkBox_fill@2x.png │ │ │ └── checkBox_fill@3x.png │ │ │ ├── dotdotdot.imageset │ │ │ ├── Contents.json │ │ │ └── dotdotdot.png │ │ │ ├── home.imageset │ │ │ ├── Contents.json │ │ │ ├── home.png │ │ │ ├── home@2x.png │ │ │ └── home@3x.png │ │ │ ├── logo_apple.imageset │ │ │ ├── Contents.json │ │ │ ├── logo_apple.png │ │ │ ├── logo_apple@2x.png │ │ │ └── logo_apple@3x.png │ │ │ ├── reservation.imageset │ │ │ ├── Contents.json │ │ │ ├── reservation.png │ │ │ ├── reservation@2x.png │ │ │ └── reservation@3x.png │ │ │ ├── reviewStar.imageset │ │ │ ├── Contents.json │ │ │ └── reviewStar.svg │ │ │ ├── select_home.imageset │ │ │ ├── Contents.json │ │ │ ├── select_home.png │ │ │ ├── select_home@2x.png │ │ │ └── select_home@3x.png │ │ │ ├── select_user.imageset │ │ │ ├── Contents.json │ │ │ ├── selecte_user.png │ │ │ ├── selecte_user@2x.png │ │ │ └── selecte_user@3x.png │ │ │ ├── selected_chat.imageset │ │ │ ├── Contents.json │ │ │ ├── selected_chat.png │ │ │ ├── selected_chat@2x.png │ │ │ └── selected_chat@3x.png │ │ │ ├── selected_mark.imageset │ │ │ ├── Contents.json │ │ │ ├── selected_mark.png │ │ │ ├── selected_mark@2x.png │ │ │ └── selected_mark@3x.png │ │ │ ├── selected_reservation.imageset │ │ │ ├── Contents.json │ │ │ ├── selected_reservation.png │ │ │ ├── selected_reservation@2x.png │ │ │ └── selected_reservation@3x.png │ │ │ ├── sendChat_disabled.imageset │ │ │ ├── Chat=Send_disabled.png │ │ │ ├── Chat=Send_disabled@2x.png │ │ │ ├── Chat=Send_disabled@3x.png │ │ │ └── Contents.json │ │ │ ├── sendChat_enabled.imageset │ │ │ ├── Chat=Send_enabled.png │ │ │ ├── Chat=Send_enabled@2x.png │ │ │ ├── Chat=Send_enabled@3x.png │ │ │ └── Contents.json │ │ │ ├── star_fill_review.imageset │ │ │ ├── Contents.json │ │ │ ├── star_fill_review.png │ │ │ ├── star_fill_review@2x.png │ │ │ └── star_fill_review@3x.png │ │ │ ├── star_review.imageset │ │ │ ├── Contents.json │ │ │ ├── star_review.png │ │ │ ├── star_review@2x.png │ │ │ └── star_review@3x.png │ │ │ └── user.imageset │ │ │ ├── Contents.json │ │ │ ├── user.png │ │ │ ├── user@2x.png │ │ │ └── user@3x.png │ ├── Font │ │ ├── Pretendard-Bold.otf │ │ ├── Pretendard-Medium.otf │ │ ├── Pretendard-Regular.otf │ │ └── Pretendard-SemiBold.otf │ ├── LaunchScreen.storyboard │ └── OpenSourceList.json └── Sources │ ├── App │ ├── AppCoordinator.swift │ ├── AppDelegate.swift │ ├── SceneDelegate.swift │ └── Splash │ │ ├── SplashViewController.swift │ │ └── SplashViewModel.swift │ ├── Config │ ├── Debug.xcconfig │ └── Release.xcconfig │ ├── Data │ ├── DTO │ │ ├── BlockDTO.swift │ │ ├── ChatDTO.swift │ │ ├── ChatroomDTO.swift │ │ ├── ContactDTO.swift │ │ ├── NicknameDTO.swift │ │ ├── OpenSourceInfoDTO.swift │ │ ├── PhotographerDTO.swift │ │ ├── ReservationDTO.swift │ │ ├── ReviewDTO.swift │ │ ├── SueDTO.swift │ │ └── UserDTO.swift │ ├── Endpoint │ │ ├── RandomNicknameEndpoint.swift │ │ └── TokenEndpoint.swift │ ├── NetworkService │ │ ├── DefaultNetworkService.swift │ │ ├── Endpoint.swift │ │ ├── NetworkError.swift │ │ └── NetworkService.swift │ └── Repositories │ │ ├── Auth │ │ └── DefaultAuthRepository.swift │ │ ├── Block │ │ └── DefaultBlockRepository.swift │ │ ├── Chat │ │ ├── DefaultChatRepository.swift │ │ └── DefaultChatroomRepository.swift │ │ ├── Fake │ │ ├── FakeAuthRepository.swift │ │ ├── FakeBlockRepository.swift │ │ ├── FakeChatRepository.swift │ │ ├── FakeChatroomRepository.swift │ │ ├── FakeError.swift │ │ ├── FakeMapRepository.swift │ │ ├── FakePhotographerRepository.swift │ │ ├── FakeRepositoryType.swift │ │ ├── FakeReservationRepository.swift │ │ ├── FakeReviewRepository.swift │ │ ├── FakeSueRepository.swift │ │ ├── FakeUploadImageRepository.swift │ │ └── FakeUserRepository.swift │ │ ├── Image │ │ └── DefaultUploadImageRepository.swift │ │ ├── Location │ │ └── DefaultLocationRepository.swift │ │ ├── Map │ │ └── DefaultMapRepository.swift │ │ ├── OpenSource │ │ └── DefaultOpenSourceListRepository.swift │ │ ├── Photograhper │ │ └── DefaultPhotograhperRepository.swift │ │ ├── Reservation │ │ └── DefaultReservationRepository.swift │ │ ├── Review │ │ └── DefaultReviewRepository.swift │ │ ├── Sue │ │ └── DefaultSueRepository.swift │ │ └── User │ │ └── DefaultUserRepository.swift │ ├── Domain │ ├── Models │ │ ├── Block.swift │ │ ├── Chat │ │ │ ├── Chat.swift │ │ │ ├── ChatPreview.swift │ │ │ └── Chatroom.swift │ │ ├── Contact.swift │ │ ├── Coordinate.swift │ │ ├── Filter │ │ │ ├── FilterMode.swift │ │ │ ├── PhotographerFilter.swift │ │ │ ├── ReservationFilter.swift │ │ │ └── TagType.swift │ │ ├── MyPageItem.swift │ │ ├── OpenSource │ │ │ └── OpenSourceInfo.swift │ │ ├── Photographer │ │ │ ├── Photographer.swift │ │ │ ├── PhotographerPreview.swift │ │ │ ├── PhotographerSection.swift │ │ │ ├── PhotographerUser.swift │ │ │ └── Picture.swift │ │ ├── Reservation.swift │ │ ├── ReservationDate.swift │ │ ├── Review │ │ │ ├── Review.swift │ │ │ ├── ReviewInformation.swift │ │ │ ├── ReviewSummary.swift │ │ │ └── UserReview.swift │ │ ├── SharedLocation.swift │ │ ├── SignInResult.swift │ │ ├── Space.swift │ │ ├── Sue.swift │ │ └── User.swift │ ├── Repositories │ │ ├── Auth │ │ │ └── AuthRepository.swift │ │ ├── Block │ │ │ └── BlockRepository.swift │ │ ├── Chat │ │ │ ├── ChatRepository.swift │ │ │ └── ChatroomRepository.swift │ │ ├── Image │ │ │ └── UploadImageRepository.swift │ │ ├── Location │ │ │ └── LocationRepository.swift │ │ ├── Map │ │ │ └── MapRepository.swift │ │ ├── OpenSource │ │ │ └── OpenSourceListRepository.swift │ │ ├── Photographer │ │ │ └── PhotographerRepository.swift │ │ ├── Reservation │ │ │ └── ReservationRepository.swift │ │ ├── Review │ │ │ └── ReviewRepository.swift │ │ ├── Sue │ │ │ └── SueRepository.swift │ │ └── User │ │ │ └── UserRepository.swift │ └── UseCases │ │ ├── Auth │ │ ├── DropOut │ │ │ ├── DefaultDropOutUseCase.swift │ │ │ └── DropOutUseCase.swift │ │ ├── SignIn │ │ │ ├── CreateUserUseCase.swift │ │ │ ├── DefaultCreateUserUseCase.swift │ │ │ ├── DefaultSignInUseCase.swift │ │ │ └── SignInUseCase.swift │ │ └── SignOut │ │ │ ├── DefaultSignOutUseCase.swift │ │ │ └── SignOutUseCase.swift │ │ ├── Block │ │ ├── DefaultCreateBlockUseCase.swift │ │ ├── DefaultFetchBlockedUsersUseCase.swift │ │ ├── DefaultRemoveBlockUseCase.swift │ │ └── Protocols │ │ │ ├── CreateBlockUseCase.swift │ │ │ ├── FetchBlockedUsersUseCase.swift │ │ │ └── RemoveBlockUseCase.swift │ │ ├── Chat │ │ ├── DefaultCreateChatroomUseCase.swift │ │ ├── DefaultLeaveChatroomUseCase.swift │ │ ├── DefaultObserveChatUseCase.swift │ │ ├── DefaultObserveLastChatUseCase.swift │ │ ├── DefaultSendChatUseCase.swift │ │ ├── DefaultSendFirstChatUseCase.swift │ │ ├── DefaultUpdateIsCheckedUseCase.swift │ │ └── Protocols │ │ │ ├── CreateChatroomUseCase.swift │ │ │ ├── LeaveChatroomUseCase.swift │ │ │ ├── ObserveChatUseCase.swift │ │ │ ├── ObserveLastChatUseCase.swift │ │ │ ├── SendChatUseCase.swift │ │ │ ├── SendFirstChatUseCase.swift │ │ │ └── UpdateIsCheckedUseCase.swift │ │ ├── ChatPreviews │ │ ├── DefaultObserveChatPreviewsUseCase.swift │ │ └── FetchChatPreviewsUseCase.swift │ │ ├── Contact │ │ ├── CreateContactUseCase.swift │ │ └── FetchContactUseCase.swift │ │ ├── DefaultUploadImageUseCase.swift │ │ ├── LocationShare │ │ ├── DefaultEndLocationShareUseCase.swift │ │ ├── DefaultObserveLocationUseCase.swift │ │ ├── DefaultUpdateLocationUseCase.swift │ │ ├── EndLocationShareUseCase.swift │ │ ├── ObserveLocationUseCase.swift │ │ └── UpdateLocationUseCase.swift │ │ ├── MyPage │ │ ├── DefaultEditUserUseCase.swift │ │ ├── DefaultFetchUserUseCase.swift │ │ ├── EditUserUseCase.swift │ │ └── FetchUserUseCase.swift │ │ ├── OpenSource │ │ ├── DefaultFetchOpenSourceListUseCase.swift │ │ └── FetchOpenSourceListUseCase.swift │ │ ├── Photographer │ │ ├── DefaultConvertDateToStringUseCase.swift │ │ ├── DefaultEditPhotographerUseCase.swift │ │ ├── DefaultEditPortfolioPictureUseCase.swift │ │ ├── DefaultFetchPhotographerPreviewsUseCase.swift │ │ ├── DefaultFetchPhotographerUseCase.swift │ │ ├── DefaultFetchPhotographerUserUseCase.swift │ │ └── Protocols │ │ │ ├── ConvertDateToStringUseCase.swift │ │ │ ├── EditPhotographerUseCase.swift │ │ │ ├── EditPortfolioPictureUseCase.swift │ │ │ ├── FetchPhotographerPreviewsUseCase.swift │ │ │ ├── FetchPhotographerUseCase.swift │ │ │ └── FetchPhotographerUserUseCase.swift │ │ ├── Reservation │ │ ├── DefaultAcceptReservationRequestUseCase.swift │ │ ├── DefaultCancelReservationRequestUseCase.swift │ │ ├── DefaultCompletePhotoshootUseCase.swift │ │ ├── DefaultCreateReservationDateUseCase.swift │ │ ├── DefaultCreateReservationUseCase.swift │ │ ├── DefaultFetchReservationPreviewsUseCase.swift │ │ ├── DefaultFetchReservationUseCase.swift │ │ ├── DefaultFetchReservationUserTypeUseCase.swift │ │ └── Protocols │ │ │ ├── AcceptReservationRequestUseCase.swift │ │ │ ├── CancelReservationRequestUseCase.swift │ │ │ ├── CompletePhotoshootUseCase.swift │ │ │ ├── CreateReservationDateUseCase.swift │ │ │ ├── CreateReservationUseCase.swift │ │ │ ├── FetchReservationPreviewsUseCase.swift │ │ │ ├── FetchReservationUseCase.swift │ │ │ └── FetchReservationUserTypeUseCase.swift │ │ ├── Review │ │ ├── CreateReviewUseCase.swift │ │ ├── DefaultCreateReviewUseCase.swift │ │ ├── DefaultFetchReviewInformationUseCase.swift │ │ ├── DefaultFetchReviewUseCase.swift │ │ ├── FetchReviewUseCase.swift │ │ └── Ptotocols │ │ │ └── FetchReviewInformationUseCase.swift │ │ ├── Search │ │ ├── DefaultFetchCurrentLocationUseCase.swift │ │ ├── DefaultSearchLocationUseCase.swift │ │ └── Protocol │ │ │ ├── FetchCurrentLocationUseCase.swift │ │ │ └── SearchLocationUseCase.swift │ │ ├── Sue │ │ ├── DefaultCreateSueUseCase.swift │ │ └── Protocols │ │ │ └── CreateSueUseCase.swift │ │ └── UploadImageUseCase.swift │ ├── Presenter │ ├── Auth │ │ ├── Coordinator │ │ │ └── AuthCoordinator.swift │ │ ├── CreateUser │ │ │ ├── CreateUserViewController.swift │ │ │ └── CreateUserViewModel.swift │ │ └── SignIn │ │ │ ├── SignInViewController.swift │ │ │ └── SignInViewModel.swift │ ├── Common │ │ ├── Base │ │ │ ├── BaseCollectionReusableView.swift │ │ │ ├── BaseCollectionViewCell.swift │ │ │ ├── BaseTableViewCell.swift │ │ │ ├── BaseView.swift │ │ │ └── BaseViewController.swift │ │ ├── Coordinator │ │ │ └── Coordinator.swift │ │ ├── Extension │ │ │ ├── ASAuthorizationController+Rx.swift │ │ │ ├── CALayer+Border.swift │ │ │ ├── CLLocationManager+Rx.swift │ │ │ ├── Date+ProperText.swift │ │ │ ├── MKAnnotationView+Reusable.swift │ │ │ ├── MapView+Rx.swift │ │ │ ├── RxSwift+CollectionViewDataSource.swift │ │ │ ├── RxSwift+TableViewDataSource.swift │ │ │ ├── UIAlertController+Builder.swift │ │ │ ├── UICollectionView+Reusable.swift │ │ │ ├── UIImagePickerController+Rx.swift │ │ │ ├── UINavigationController+.swift │ │ │ ├── UITableView+Reusable.swift │ │ │ ├── UIView+AddSubviews.swift │ │ │ ├── UIView+Keyboard.swift │ │ │ ├── UIViewController+.swift │ │ │ └── UIViewController+Reactvie.swift │ │ ├── Reusable │ │ │ ├── CompositionalLayout.swift │ │ │ ├── Divider.swift │ │ │ ├── Filter │ │ │ │ ├── FilterCell.swift │ │ │ │ └── FilterView.swift │ │ │ ├── InformationStackView.swift │ │ │ ├── LocationTrackButton.swift │ │ │ ├── NicknameTextFieldView.swift │ │ │ ├── PaddingLabel.swift │ │ │ ├── PlaceHolderView.swift │ │ │ ├── ProfileImageView.swift │ │ │ ├── ReviewCell.swift │ │ │ ├── StarView.swift │ │ │ ├── TrinapButton.swift │ │ │ ├── TrinapMultiSelectionCalendarView.swift │ │ │ ├── TrinapNavigationBarView.swift │ │ │ ├── TrinapSearchBar.swift │ │ │ ├── TrinapSingleSelectionCalendarView.swift │ │ │ ├── UnderlinedSegmentedControl.swift │ │ │ └── WarningStackView.swift │ │ └── ViewModelType.swift │ └── TabBar │ │ ├── Chat │ │ ├── Cell │ │ │ ├── ActionChatCell.swift │ │ │ ├── ChatCell.swift │ │ │ ├── ChatContentView.swift │ │ │ ├── ChatPreviewCell.swift │ │ │ ├── ImageChatCell.swift │ │ │ ├── LocationShareChatCell.swift │ │ │ ├── ReservationChatCell.swift │ │ │ └── TextChatCell.swift │ │ ├── ChatDetail │ │ │ ├── ChatDetailViewController.swift │ │ │ ├── ChatDetailViewModel.swift │ │ │ └── ChatTableView.swift │ │ ├── ChatNavigationTitleView.swift │ │ ├── ChatPreviewsViewController.swift │ │ ├── ChatPreviewsViewModel.swift │ │ ├── Coordinator │ │ │ ├── ChatCoordinator.swift │ │ │ └── ChatDetailCoordinator.swift │ │ ├── Custom │ │ │ ├── ChatInputView.swift │ │ │ └── UnreadAccessoryView.swift │ │ └── Location │ │ │ ├── LocationShareViewController.swift │ │ │ ├── LocationShareViewModel.swift │ │ │ └── TrinapAnnotationView.swift │ │ ├── Coordinator │ │ ├── TabBarCoordinator.swift │ │ ├── TabBarPageCase.swift │ │ └── TabBarPageType.swift │ │ ├── Main │ │ ├── Coordinator │ │ │ ├── MainCoordinator.swift │ │ │ ├── MainDependencyContainer.swift │ │ │ ├── PhotographerDetailCoordinator.swift │ │ │ └── PhotographerDetailDependencyContainer.swift │ │ ├── PhotographerDetail │ │ │ ├── CollectionView │ │ │ │ └── PhotographerProfileCell.swift │ │ │ ├── PhotographerDetailDataSource.swift │ │ │ ├── PhotographerDetailViewController.swift │ │ │ └── PhotographerDetailViewModel.swift │ │ ├── PhotographerList │ │ │ ├── PhotographerListViewController.swift │ │ │ ├── PhotographerListViewModel.swift │ │ │ └── PhotographerPreviewCell.swift │ │ ├── SearchBarView.swift │ │ ├── SelectReservationDate │ │ │ ├── SelectReservationDateViewController.swift │ │ │ ├── SelectReservationDateViewModel.swift │ │ │ ├── TimeCell.swift │ │ │ └── TitleSectionHeaderView.swift │ │ ├── Sue │ │ │ ├── SueViewController.swift │ │ │ └── SueViewModel.swift │ │ ├── ThumbnailCollectionView.swift │ │ ├── ThumbnailCollectionViewCell.swift │ │ ├── ThumbnailImageView.swift │ │ └── TrinapAlert │ │ │ └── TrinapAlert.swift │ │ ├── MyPage │ │ ├── BlockList │ │ │ ├── BlockListCell.swift │ │ │ ├── BlockListViewController.swift │ │ │ └── BlockListViewModel.swift │ │ ├── Contact │ │ │ ├── ContactListViewController.swift │ │ │ ├── ContactListViewModel.swift │ │ │ ├── ContactTableViewCell.swift │ │ │ ├── Create │ │ │ │ ├── CreateContactViewController.swift │ │ │ │ └── CreateContactViewModel.swift │ │ │ └── Detail │ │ │ │ ├── DetailContactViewController.swift │ │ │ │ └── DetailContactViewModel.swift │ │ ├── Coordinator │ │ │ ├── MyPageCoordinator.swift │ │ │ └── MyPageDependencyContainter.swift │ │ ├── DropOut │ │ │ ├── DropOutViewController.swift │ │ │ └── DropOutViewModel.swift │ │ ├── EditProfile │ │ │ ├── EditProfileViewController.swift │ │ │ └── EditProfileViewModel.swift │ │ ├── MyPage │ │ │ ├── MyPageViewController.swift │ │ │ ├── MyPageViewModel.swift │ │ │ └── Tableview │ │ │ │ ├── MyPageInfoRow.swift │ │ │ │ ├── MyPageSectionHeader.swift │ │ │ │ ├── MyPageSwitchRow.swift │ │ │ │ └── ProfileCell.swift │ │ ├── OpenSoucreList │ │ │ ├── OpenSourceCell.swift │ │ │ ├── OpenSourceListViewController.swift │ │ │ └── OpenSourceListViewModel.swift │ │ └── Photographer │ │ │ ├── ColletionView │ │ │ ├── EditPhotographerPhotoDeleteHeaderView.swift │ │ │ ├── EditPhotographerPhotoHeaderView.swift │ │ │ ├── EditPhotographerProfileCell.swift │ │ │ ├── PhotoCell.swift │ │ │ ├── PhotographerDetailCell.swift │ │ │ ├── PhotographerLayout.swift │ │ │ ├── PhotographerReivewCell.swift │ │ │ └── PhotographerSummaryReviewcell.swift │ │ │ ├── DetailImageViewController.swift │ │ │ ├── EditPhotographerViewController.swift │ │ │ ├── EditPhotographerViewModel.swift │ │ │ ├── EditPossibleDate │ │ │ ├── EditPossibleDateViewController.swift │ │ │ └── EditPossibleDateViewModel.swift │ │ │ ├── PhotographerPlaceholderView.swift │ │ │ └── Register │ │ │ ├── RegisterLocationView.swift │ │ │ ├── RegisterPhotographerInfoViewController.swift │ │ │ ├── RegisterPhotographerInfoViewModel.swift │ │ │ ├── RegisterPriceView.swift │ │ │ └── TagCell.swift │ │ ├── Reservation │ │ ├── Coordinator │ │ │ ├── ReservationCoordinator.swift │ │ │ └── ReservationDependencyContainer.swift │ │ ├── Detail │ │ │ ├── HandleStatus │ │ │ │ ├── ReservationCancelled.swift │ │ │ │ ├── ReservationConfirmed.swift │ │ │ │ ├── ReservationDone.swift │ │ │ │ ├── ReservationError.swift │ │ │ │ ├── ReservationRequested.swift │ │ │ │ ├── ReservationStatusConfigurations.swift │ │ │ │ ├── ReservationStatusConvertible.swift │ │ │ │ └── ReservationUseCaseExecutable.swift │ │ │ ├── ReservationButtonView.swift │ │ │ ├── ReservationDetailViewController.swift │ │ │ ├── ReservationDetailViewModel.swift │ │ │ └── ReservationUserView.swift │ │ ├── ReservationList │ │ │ ├── ReservationCell.swift │ │ │ ├── ReservationFilterView.swift │ │ │ ├── ReservationPreviewListViewController.swift │ │ │ └── ReservationPreviewListViewModel.swift │ │ └── Review │ │ │ ├── CreateReviewViewController.swift │ │ │ ├── CreateReviewViewModel.swift │ │ │ ├── RatingView.swift │ │ │ └── ReviewList │ │ │ ├── CustomerReviewListViewController.swift │ │ │ └── CustomerReviewListViewModel.swift │ │ └── Search │ │ ├── SearchViewController.swift │ │ └── SearchViewModel.swift │ └── Utils │ ├── Array+.swift │ ├── Date+.swift │ ├── Dictionary+.swift │ ├── Encodable+.swift │ ├── LocalError.swift │ ├── Logger.swift │ ├── ObservableConvertibleType+Driver.swift │ ├── String+.swift │ ├── TokenManager │ ├── KeychainAccount.swift │ ├── KeychainTokenManager.swift │ ├── TokenManager.swift │ └── TokenManagerError.swift │ ├── URLConstants.swift │ └── UserDefaultKey.swift ├── TrinapTests └── Sources │ ├── MockTokenManager.swift │ ├── RxTest+RecordedEvents.swift │ ├── TrinapTests.swift │ └── UseCase │ └── Review │ ├── FetchReviewUseCaseTests.swift │ ├── MockReviewRepository.swift │ └── MockUserRepository.swift ├── Tuist ├── Config.swift ├── Dependencies.swift ├── ProjectDescriptionHelpers │ └── Project+Templates.swift └── master.key └── fastlane ├── Appfile ├── Fastfile ├── Matchfile └── README.md /.github/ISSUE_TEMPLATE/trinap-issue-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/.github/ISSUE_TEMPLATE/trinap-issue-template.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/.gitignore -------------------------------------------------------------------------------- /.swiftlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/.swiftlint.yml -------------------------------------------------------------------------------- /FirestoreService/Sources/FireStore/DefaultFirebaseStoreService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/FirestoreService/Sources/FireStore/DefaultFirebaseStoreService.swift -------------------------------------------------------------------------------- /FirestoreService/Sources/FireStore/FireStoreCollectionName.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/FirestoreService/Sources/FireStore/FireStoreCollectionName.swift -------------------------------------------------------------------------------- /FirestoreService/Sources/FireStore/FirebaseStoreService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/FirestoreService/Sources/FireStore/FirebaseStoreService.swift -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- 1 | source "https://rubygems.org" 2 | 3 | gem "fastlane" 4 | -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LocationCache/Sources/Cache/DiskLocationCache.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/LocationCache/Sources/Cache/DiskLocationCache.swift -------------------------------------------------------------------------------- /LocationCache/Sources/Cache/LocationCacheProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/LocationCache/Sources/Cache/LocationCacheProtocol.swift -------------------------------------------------------------------------------- /LocationCache/Sources/Cache/MemoryLocationCache.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/LocationCache/Sources/Cache/MemoryLocationCache.swift -------------------------------------------------------------------------------- /LocationCache/Sources/Extension/CLPlacemark+Address.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/LocationCache/Sources/Extension/CLPlacemark+Address.swift -------------------------------------------------------------------------------- /LocationCache/Sources/General/CLGeocoder+Cache.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/LocationCache/Sources/General/CLGeocoder+Cache.swift -------------------------------------------------------------------------------- /LocationCache/Sources/General/LocationCacheError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/LocationCache/Sources/General/LocationCacheError.swift -------------------------------------------------------------------------------- /LocationCache/Sources/General/LocationCacheWrapper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/LocationCache/Sources/General/LocationCacheWrapper.swift -------------------------------------------------------------------------------- /Plugins/Trinap/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Plugins/Trinap/Package.swift -------------------------------------------------------------------------------- /Plugins/Trinap/Plugin.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Plugins/Trinap/Plugin.swift -------------------------------------------------------------------------------- /Plugins/Trinap/ProjectDescriptionHelpers/LocalHelper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Plugins/Trinap/ProjectDescriptionHelpers/LocalHelper.swift -------------------------------------------------------------------------------- /Plugins/Trinap/Sources/tuist-my-cli/main.swift: -------------------------------------------------------------------------------- 1 | print("Hello, from your Tuist Task") -------------------------------------------------------------------------------- /Project.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Project.swift -------------------------------------------------------------------------------- /Queenfisher/Sources/General/Queenfisher.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Queenfisher/Sources/General/Queenfisher.swift -------------------------------------------------------------------------------- /Queenfisher/Sources/ImageCache/CacheableImage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Queenfisher/Sources/ImageCache/CacheableImage.swift -------------------------------------------------------------------------------- /Queenfisher/Sources/ImageCache/ImageCache.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Queenfisher/Sources/ImageCache/ImageCache.swift -------------------------------------------------------------------------------- /Queenfisher/Sources/ImageCache/ImageCacheConfig.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Queenfisher/Sources/ImageCache/ImageCacheConfig.swift -------------------------------------------------------------------------------- /Queenfisher/Sources/ImageCache/ImageCacheError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Queenfisher/Sources/ImageCache/ImageCacheError.swift -------------------------------------------------------------------------------- /Queenfisher/Sources/ImageCache/ImageCacheImplements.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Queenfisher/Sources/ImageCache/ImageCacheImplements.swift -------------------------------------------------------------------------------- /Queenfisher/Sources/ImageCache/ImageCacheProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Queenfisher/Sources/ImageCache/ImageCacheProtocol.swift -------------------------------------------------------------------------------- /Queenfisher/Sources/ImageCache/ImageCacheStorage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Queenfisher/Sources/ImageCache/ImageCacheStorage.swift -------------------------------------------------------------------------------- /Queenfisher/Sources/ImageCache/ImageDownloader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Queenfisher/Sources/ImageCache/ImageDownloader.swift -------------------------------------------------------------------------------- /Queenfisher/Sources/View/Image+Downsample.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Queenfisher/Sources/View/Image+Downsample.swift -------------------------------------------------------------------------------- /Queenfisher/Sources/View/ImageView+QF.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Queenfisher/Sources/View/ImageView+QF.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/README.md -------------------------------------------------------------------------------- /Scripts/SwiftLintRunScript.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Scripts/SwiftLintRunScript.sh -------------------------------------------------------------------------------- /Scripts/UpdatePackageRunScript.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Scripts/UpdatePackageRunScript.sh -------------------------------------------------------------------------------- /Than/Sources/Than.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Than/Sources/Than.swift -------------------------------------------------------------------------------- /Trinap.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap.entitlements -------------------------------------------------------------------------------- /Trinap/Resources/Assets.xcassets/AppIcon.appiconset/AppIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Resources/Assets.xcassets/AppIcon.appiconset/AppIcon.png -------------------------------------------------------------------------------- /Trinap/Resources/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Resources/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Trinap/Resources/Assets.xcassets/Colors/Blacks/Background.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Resources/Assets.xcassets/Colors/Blacks/Background.colorset/Contents.json -------------------------------------------------------------------------------- /Trinap/Resources/Assets.xcassets/Colors/Blacks/Black.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Resources/Assets.xcassets/Colors/Blacks/Black.colorset/Contents.json -------------------------------------------------------------------------------- /Trinap/Resources/Assets.xcassets/Colors/Blacks/Border.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Resources/Assets.xcassets/Colors/Blacks/Border.colorset/Contents.json -------------------------------------------------------------------------------- /Trinap/Resources/Assets.xcassets/Colors/Blacks/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Resources/Assets.xcassets/Colors/Blacks/Contents.json -------------------------------------------------------------------------------- /Trinap/Resources/Assets.xcassets/Colors/Blacks/Disabled.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Resources/Assets.xcassets/Colors/Blacks/Disabled.colorset/Contents.json -------------------------------------------------------------------------------- /Trinap/Resources/Assets.xcassets/Colors/Blacks/Gray20.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Resources/Assets.xcassets/Colors/Blacks/Gray20.colorset/Contents.json -------------------------------------------------------------------------------- /Trinap/Resources/Assets.xcassets/Colors/Blacks/Gray40.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Resources/Assets.xcassets/Colors/Blacks/Gray40.colorset/Contents.json -------------------------------------------------------------------------------- /Trinap/Resources/Assets.xcassets/Colors/Blacks/Subtext.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Resources/Assets.xcassets/Colors/Blacks/Subtext.colorset/Contents.json -------------------------------------------------------------------------------- /Trinap/Resources/Assets.xcassets/Colors/Blacks/Subtext2.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Resources/Assets.xcassets/Colors/Blacks/Subtext2.colorset/Contents.json -------------------------------------------------------------------------------- /Trinap/Resources/Assets.xcassets/Colors/Blacks/White.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Resources/Assets.xcassets/Colors/Blacks/White.colorset/Contents.json -------------------------------------------------------------------------------- /Trinap/Resources/Assets.xcassets/Colors/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Resources/Assets.xcassets/Colors/Contents.json -------------------------------------------------------------------------------- /Trinap/Resources/Assets.xcassets/Colors/Error.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Resources/Assets.xcassets/Colors/Error.colorset/Contents.json -------------------------------------------------------------------------------- /Trinap/Resources/Assets.xcassets/Colors/Primary.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Resources/Assets.xcassets/Colors/Primary.colorset/Contents.json -------------------------------------------------------------------------------- /Trinap/Resources/Assets.xcassets/Colors/Secondary.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Resources/Assets.xcassets/Colors/Secondary.colorset/Contents.json -------------------------------------------------------------------------------- /Trinap/Resources/Assets.xcassets/Colors/Sub1.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Resources/Assets.xcassets/Colors/Sub1.colorset/Contents.json -------------------------------------------------------------------------------- /Trinap/Resources/Assets.xcassets/Colors/Sub2.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Resources/Assets.xcassets/Colors/Sub2.colorset/Contents.json -------------------------------------------------------------------------------- /Trinap/Resources/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Resources/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Trinap/Resources/Assets.xcassets/Images/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Resources/Assets.xcassets/Images/Contents.json -------------------------------------------------------------------------------- /Trinap/Resources/Assets.xcassets/Images/CustomerPin.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Resources/Assets.xcassets/Images/CustomerPin.imageset/Contents.json -------------------------------------------------------------------------------- /Trinap/Resources/Assets.xcassets/Images/CustomerPin.imageset/CustomerPin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Resources/Assets.xcassets/Images/CustomerPin.imageset/CustomerPin.png -------------------------------------------------------------------------------- /Trinap/Resources/Assets.xcassets/Images/CustomerPin.imageset/CustomerPin@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Resources/Assets.xcassets/Images/CustomerPin.imageset/CustomerPin@2x.png -------------------------------------------------------------------------------- /Trinap/Resources/Assets.xcassets/Images/CustomerPin.imageset/CustomerPin@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Resources/Assets.xcassets/Images/CustomerPin.imageset/CustomerPin@3x.png -------------------------------------------------------------------------------- /Trinap/Resources/Assets.xcassets/Images/CustomerTracked.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Resources/Assets.xcassets/Images/CustomerTracked.imageset/Contents.json -------------------------------------------------------------------------------- /Trinap/Resources/Assets.xcassets/Images/CustomerTracked.imageset/CustomerTracked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Resources/Assets.xcassets/Images/CustomerTracked.imageset/CustomerTracked.png -------------------------------------------------------------------------------- /Trinap/Resources/Assets.xcassets/Images/CustomerTracked.imageset/CustomerTracked@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Resources/Assets.xcassets/Images/CustomerTracked.imageset/CustomerTracked@2x.png -------------------------------------------------------------------------------- /Trinap/Resources/Assets.xcassets/Images/CustomerTracked.imageset/CustomerTracked@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Resources/Assets.xcassets/Images/CustomerTracked.imageset/CustomerTracked@3x.png -------------------------------------------------------------------------------- /Trinap/Resources/Assets.xcassets/Images/CustomerUntracked.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Resources/Assets.xcassets/Images/CustomerUntracked.imageset/Contents.json -------------------------------------------------------------------------------- /Trinap/Resources/Assets.xcassets/Images/CustomerUntracked.imageset/CustomerUntracked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Resources/Assets.xcassets/Images/CustomerUntracked.imageset/CustomerUntracked.png -------------------------------------------------------------------------------- /Trinap/Resources/Assets.xcassets/Images/CustomerUntracked.imageset/CustomerUntracked@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Resources/Assets.xcassets/Images/CustomerUntracked.imageset/CustomerUntracked@2x.png -------------------------------------------------------------------------------- /Trinap/Resources/Assets.xcassets/Images/CustomerUntracked.imageset/CustomerUntracked@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Resources/Assets.xcassets/Images/CustomerUntracked.imageset/CustomerUntracked@3x.png -------------------------------------------------------------------------------- /Trinap/Resources/Assets.xcassets/Images/LocationShareBackButton.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Resources/Assets.xcassets/Images/LocationShareBackButton.imageset/Contents.json -------------------------------------------------------------------------------- /Trinap/Resources/Assets.xcassets/Images/LocationShareBackButton.imageset/LocationShareBackButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Resources/Assets.xcassets/Images/LocationShareBackButton.imageset/LocationShareBackButton.png -------------------------------------------------------------------------------- /Trinap/Resources/Assets.xcassets/Images/LocationShareBackButton.imageset/LocationShareBackButton@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Resources/Assets.xcassets/Images/LocationShareBackButton.imageset/LocationShareBackButton@2x.png -------------------------------------------------------------------------------- /Trinap/Resources/Assets.xcassets/Images/LocationShareBackButton.imageset/LocationShareBackButton@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Resources/Assets.xcassets/Images/LocationShareBackButton.imageset/LocationShareBackButton@3x.png -------------------------------------------------------------------------------- /Trinap/Resources/Assets.xcassets/Images/Logo_Vertical.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Resources/Assets.xcassets/Images/Logo_Vertical.imageset/Contents.json -------------------------------------------------------------------------------- /Trinap/Resources/Assets.xcassets/Images/Logo_Vertical.imageset/logo_vertical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Resources/Assets.xcassets/Images/Logo_Vertical.imageset/logo_vertical.png -------------------------------------------------------------------------------- /Trinap/Resources/Assets.xcassets/Images/Logo_Vertical.imageset/logo_vertical2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Resources/Assets.xcassets/Images/Logo_Vertical.imageset/logo_vertical2x.png -------------------------------------------------------------------------------- /Trinap/Resources/Assets.xcassets/Images/Logo_Vertical.imageset/logo_vertical3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Resources/Assets.xcassets/Images/Logo_Vertical.imageset/logo_vertical3x.png -------------------------------------------------------------------------------- /Trinap/Resources/Assets.xcassets/Images/PhotographerPin.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Resources/Assets.xcassets/Images/PhotographerPin.imageset/Contents.json -------------------------------------------------------------------------------- /Trinap/Resources/Assets.xcassets/Images/PhotographerPin.imageset/PhotographerPin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Resources/Assets.xcassets/Images/PhotographerPin.imageset/PhotographerPin.png -------------------------------------------------------------------------------- /Trinap/Resources/Assets.xcassets/Images/PhotographerPin.imageset/PhotographerPin@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Resources/Assets.xcassets/Images/PhotographerPin.imageset/PhotographerPin@2x.png -------------------------------------------------------------------------------- /Trinap/Resources/Assets.xcassets/Images/PhotographerPin.imageset/PhotographerPin@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Resources/Assets.xcassets/Images/PhotographerPin.imageset/PhotographerPin@3x.png -------------------------------------------------------------------------------- /Trinap/Resources/Assets.xcassets/Images/PhotographerTracked.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Resources/Assets.xcassets/Images/PhotographerTracked.imageset/Contents.json -------------------------------------------------------------------------------- /Trinap/Resources/Assets.xcassets/Images/PhotographerTracked.imageset/PhotographerTracked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Resources/Assets.xcassets/Images/PhotographerTracked.imageset/PhotographerTracked.png -------------------------------------------------------------------------------- /Trinap/Resources/Assets.xcassets/Images/PhotographerTracked.imageset/PhotographerTracked@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Resources/Assets.xcassets/Images/PhotographerTracked.imageset/PhotographerTracked@2x.png -------------------------------------------------------------------------------- /Trinap/Resources/Assets.xcassets/Images/PhotographerTracked.imageset/PhotographerTracked@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Resources/Assets.xcassets/Images/PhotographerTracked.imageset/PhotographerTracked@3x.png -------------------------------------------------------------------------------- /Trinap/Resources/Assets.xcassets/Images/PhotographerUntracked.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Resources/Assets.xcassets/Images/PhotographerUntracked.imageset/Contents.json -------------------------------------------------------------------------------- /Trinap/Resources/Assets.xcassets/Images/PhotographerUntracked.imageset/PhotographerUntracked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Resources/Assets.xcassets/Images/PhotographerUntracked.imageset/PhotographerUntracked.png -------------------------------------------------------------------------------- /Trinap/Resources/Assets.xcassets/Images/PhotographerUntracked.imageset/PhotographerUntracked@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Resources/Assets.xcassets/Images/PhotographerUntracked.imageset/PhotographerUntracked@2x.png -------------------------------------------------------------------------------- /Trinap/Resources/Assets.xcassets/Images/PhotographerUntracked.imageset/PhotographerUntracked@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Resources/Assets.xcassets/Images/PhotographerUntracked.imageset/PhotographerUntracked@3x.png -------------------------------------------------------------------------------- /Trinap/Resources/Assets.xcassets/Images/PlaceholderImage.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Resources/Assets.xcassets/Images/PlaceholderImage.imageset/Contents.json -------------------------------------------------------------------------------- /Trinap/Resources/Assets.xcassets/Images/PlaceholderImage.imageset/PlaceholderImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Resources/Assets.xcassets/Images/PlaceholderImage.imageset/PlaceholderImage.png -------------------------------------------------------------------------------- /Trinap/Resources/Assets.xcassets/Images/PlaceholderImage.imageset/PlaceholderImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Resources/Assets.xcassets/Images/PlaceholderImage.imageset/PlaceholderImage@2x.png -------------------------------------------------------------------------------- /Trinap/Resources/Assets.xcassets/Images/PlaceholderImage.imageset/PlaceholderImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Resources/Assets.xcassets/Images/PlaceholderImage.imageset/PlaceholderImage@3x.png -------------------------------------------------------------------------------- /Trinap/Resources/Assets.xcassets/Images/chat.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Resources/Assets.xcassets/Images/chat.imageset/Contents.json -------------------------------------------------------------------------------- /Trinap/Resources/Assets.xcassets/Images/chat.imageset/chat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Resources/Assets.xcassets/Images/chat.imageset/chat.png -------------------------------------------------------------------------------- /Trinap/Resources/Assets.xcassets/Images/chat.imageset/chat@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Resources/Assets.xcassets/Images/chat.imageset/chat@2x.png -------------------------------------------------------------------------------- /Trinap/Resources/Assets.xcassets/Images/chat.imageset/chat@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Resources/Assets.xcassets/Images/chat.imageset/chat@3x.png -------------------------------------------------------------------------------- /Trinap/Resources/Assets.xcassets/Images/chat_plus.imageset/Chat=Plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Resources/Assets.xcassets/Images/chat_plus.imageset/Chat=Plus.png -------------------------------------------------------------------------------- /Trinap/Resources/Assets.xcassets/Images/chat_plus.imageset/Chat=Plus@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Resources/Assets.xcassets/Images/chat_plus.imageset/Chat=Plus@2x.png -------------------------------------------------------------------------------- /Trinap/Resources/Assets.xcassets/Images/chat_plus.imageset/Chat=Plus@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Resources/Assets.xcassets/Images/chat_plus.imageset/Chat=Plus@3x.png -------------------------------------------------------------------------------- /Trinap/Resources/Assets.xcassets/Images/chat_plus.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Resources/Assets.xcassets/Images/chat_plus.imageset/Contents.json -------------------------------------------------------------------------------- /Trinap/Resources/Assets.xcassets/Images/checkBox.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Resources/Assets.xcassets/Images/checkBox.imageset/Contents.json -------------------------------------------------------------------------------- /Trinap/Resources/Assets.xcassets/Images/checkBox.imageset/checkBox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Resources/Assets.xcassets/Images/checkBox.imageset/checkBox.png -------------------------------------------------------------------------------- /Trinap/Resources/Assets.xcassets/Images/checkBox.imageset/checkBox@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Resources/Assets.xcassets/Images/checkBox.imageset/checkBox@2x.png -------------------------------------------------------------------------------- /Trinap/Resources/Assets.xcassets/Images/checkBox.imageset/checkBox@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Resources/Assets.xcassets/Images/checkBox.imageset/checkBox@3x.png -------------------------------------------------------------------------------- /Trinap/Resources/Assets.xcassets/Images/checkBox_fill.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Resources/Assets.xcassets/Images/checkBox_fill.imageset/Contents.json -------------------------------------------------------------------------------- /Trinap/Resources/Assets.xcassets/Images/checkBox_fill.imageset/checkBox_fill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Resources/Assets.xcassets/Images/checkBox_fill.imageset/checkBox_fill.png -------------------------------------------------------------------------------- /Trinap/Resources/Assets.xcassets/Images/checkBox_fill.imageset/checkBox_fill@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Resources/Assets.xcassets/Images/checkBox_fill.imageset/checkBox_fill@2x.png -------------------------------------------------------------------------------- /Trinap/Resources/Assets.xcassets/Images/checkBox_fill.imageset/checkBox_fill@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Resources/Assets.xcassets/Images/checkBox_fill.imageset/checkBox_fill@3x.png -------------------------------------------------------------------------------- /Trinap/Resources/Assets.xcassets/Images/dotdotdot.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Resources/Assets.xcassets/Images/dotdotdot.imageset/Contents.json -------------------------------------------------------------------------------- /Trinap/Resources/Assets.xcassets/Images/dotdotdot.imageset/dotdotdot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Resources/Assets.xcassets/Images/dotdotdot.imageset/dotdotdot.png -------------------------------------------------------------------------------- /Trinap/Resources/Assets.xcassets/Images/home.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Resources/Assets.xcassets/Images/home.imageset/Contents.json -------------------------------------------------------------------------------- /Trinap/Resources/Assets.xcassets/Images/home.imageset/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Resources/Assets.xcassets/Images/home.imageset/home.png -------------------------------------------------------------------------------- /Trinap/Resources/Assets.xcassets/Images/home.imageset/home@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Resources/Assets.xcassets/Images/home.imageset/home@2x.png -------------------------------------------------------------------------------- /Trinap/Resources/Assets.xcassets/Images/home.imageset/home@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Resources/Assets.xcassets/Images/home.imageset/home@3x.png -------------------------------------------------------------------------------- /Trinap/Resources/Assets.xcassets/Images/logo_apple.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Resources/Assets.xcassets/Images/logo_apple.imageset/Contents.json -------------------------------------------------------------------------------- /Trinap/Resources/Assets.xcassets/Images/logo_apple.imageset/logo_apple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Resources/Assets.xcassets/Images/logo_apple.imageset/logo_apple.png -------------------------------------------------------------------------------- /Trinap/Resources/Assets.xcassets/Images/logo_apple.imageset/logo_apple@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Resources/Assets.xcassets/Images/logo_apple.imageset/logo_apple@2x.png -------------------------------------------------------------------------------- /Trinap/Resources/Assets.xcassets/Images/logo_apple.imageset/logo_apple@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Resources/Assets.xcassets/Images/logo_apple.imageset/logo_apple@3x.png -------------------------------------------------------------------------------- /Trinap/Resources/Assets.xcassets/Images/reservation.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Resources/Assets.xcassets/Images/reservation.imageset/Contents.json -------------------------------------------------------------------------------- /Trinap/Resources/Assets.xcassets/Images/reservation.imageset/reservation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Resources/Assets.xcassets/Images/reservation.imageset/reservation.png -------------------------------------------------------------------------------- /Trinap/Resources/Assets.xcassets/Images/reservation.imageset/reservation@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Resources/Assets.xcassets/Images/reservation.imageset/reservation@2x.png -------------------------------------------------------------------------------- /Trinap/Resources/Assets.xcassets/Images/reservation.imageset/reservation@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Resources/Assets.xcassets/Images/reservation.imageset/reservation@3x.png -------------------------------------------------------------------------------- /Trinap/Resources/Assets.xcassets/Images/reviewStar.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Resources/Assets.xcassets/Images/reviewStar.imageset/Contents.json -------------------------------------------------------------------------------- /Trinap/Resources/Assets.xcassets/Images/reviewStar.imageset/reviewStar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Resources/Assets.xcassets/Images/reviewStar.imageset/reviewStar.svg -------------------------------------------------------------------------------- /Trinap/Resources/Assets.xcassets/Images/select_home.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Resources/Assets.xcassets/Images/select_home.imageset/Contents.json -------------------------------------------------------------------------------- /Trinap/Resources/Assets.xcassets/Images/select_home.imageset/select_home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Resources/Assets.xcassets/Images/select_home.imageset/select_home.png -------------------------------------------------------------------------------- /Trinap/Resources/Assets.xcassets/Images/select_home.imageset/select_home@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Resources/Assets.xcassets/Images/select_home.imageset/select_home@2x.png -------------------------------------------------------------------------------- /Trinap/Resources/Assets.xcassets/Images/select_home.imageset/select_home@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Resources/Assets.xcassets/Images/select_home.imageset/select_home@3x.png -------------------------------------------------------------------------------- /Trinap/Resources/Assets.xcassets/Images/select_user.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Resources/Assets.xcassets/Images/select_user.imageset/Contents.json -------------------------------------------------------------------------------- /Trinap/Resources/Assets.xcassets/Images/select_user.imageset/selecte_user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Resources/Assets.xcassets/Images/select_user.imageset/selecte_user.png -------------------------------------------------------------------------------- /Trinap/Resources/Assets.xcassets/Images/select_user.imageset/selecte_user@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Resources/Assets.xcassets/Images/select_user.imageset/selecte_user@2x.png -------------------------------------------------------------------------------- /Trinap/Resources/Assets.xcassets/Images/select_user.imageset/selecte_user@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Resources/Assets.xcassets/Images/select_user.imageset/selecte_user@3x.png -------------------------------------------------------------------------------- /Trinap/Resources/Assets.xcassets/Images/selected_chat.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Resources/Assets.xcassets/Images/selected_chat.imageset/Contents.json -------------------------------------------------------------------------------- /Trinap/Resources/Assets.xcassets/Images/selected_chat.imageset/selected_chat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Resources/Assets.xcassets/Images/selected_chat.imageset/selected_chat.png -------------------------------------------------------------------------------- /Trinap/Resources/Assets.xcassets/Images/selected_chat.imageset/selected_chat@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Resources/Assets.xcassets/Images/selected_chat.imageset/selected_chat@2x.png -------------------------------------------------------------------------------- /Trinap/Resources/Assets.xcassets/Images/selected_chat.imageset/selected_chat@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Resources/Assets.xcassets/Images/selected_chat.imageset/selected_chat@3x.png -------------------------------------------------------------------------------- /Trinap/Resources/Assets.xcassets/Images/selected_mark.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Resources/Assets.xcassets/Images/selected_mark.imageset/Contents.json -------------------------------------------------------------------------------- /Trinap/Resources/Assets.xcassets/Images/selected_mark.imageset/selected_mark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Resources/Assets.xcassets/Images/selected_mark.imageset/selected_mark.png -------------------------------------------------------------------------------- /Trinap/Resources/Assets.xcassets/Images/selected_mark.imageset/selected_mark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Resources/Assets.xcassets/Images/selected_mark.imageset/selected_mark@2x.png -------------------------------------------------------------------------------- /Trinap/Resources/Assets.xcassets/Images/selected_mark.imageset/selected_mark@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Resources/Assets.xcassets/Images/selected_mark.imageset/selected_mark@3x.png -------------------------------------------------------------------------------- /Trinap/Resources/Assets.xcassets/Images/selected_reservation.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Resources/Assets.xcassets/Images/selected_reservation.imageset/Contents.json -------------------------------------------------------------------------------- /Trinap/Resources/Assets.xcassets/Images/selected_reservation.imageset/selected_reservation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Resources/Assets.xcassets/Images/selected_reservation.imageset/selected_reservation.png -------------------------------------------------------------------------------- /Trinap/Resources/Assets.xcassets/Images/selected_reservation.imageset/selected_reservation@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Resources/Assets.xcassets/Images/selected_reservation.imageset/selected_reservation@2x.png -------------------------------------------------------------------------------- /Trinap/Resources/Assets.xcassets/Images/selected_reservation.imageset/selected_reservation@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Resources/Assets.xcassets/Images/selected_reservation.imageset/selected_reservation@3x.png -------------------------------------------------------------------------------- /Trinap/Resources/Assets.xcassets/Images/sendChat_disabled.imageset/Chat=Send_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Resources/Assets.xcassets/Images/sendChat_disabled.imageset/Chat=Send_disabled.png -------------------------------------------------------------------------------- /Trinap/Resources/Assets.xcassets/Images/sendChat_disabled.imageset/Chat=Send_disabled@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Resources/Assets.xcassets/Images/sendChat_disabled.imageset/Chat=Send_disabled@2x.png -------------------------------------------------------------------------------- /Trinap/Resources/Assets.xcassets/Images/sendChat_disabled.imageset/Chat=Send_disabled@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Resources/Assets.xcassets/Images/sendChat_disabled.imageset/Chat=Send_disabled@3x.png -------------------------------------------------------------------------------- /Trinap/Resources/Assets.xcassets/Images/sendChat_disabled.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Resources/Assets.xcassets/Images/sendChat_disabled.imageset/Contents.json -------------------------------------------------------------------------------- /Trinap/Resources/Assets.xcassets/Images/sendChat_enabled.imageset/Chat=Send_enabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Resources/Assets.xcassets/Images/sendChat_enabled.imageset/Chat=Send_enabled.png -------------------------------------------------------------------------------- /Trinap/Resources/Assets.xcassets/Images/sendChat_enabled.imageset/Chat=Send_enabled@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Resources/Assets.xcassets/Images/sendChat_enabled.imageset/Chat=Send_enabled@2x.png -------------------------------------------------------------------------------- /Trinap/Resources/Assets.xcassets/Images/sendChat_enabled.imageset/Chat=Send_enabled@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Resources/Assets.xcassets/Images/sendChat_enabled.imageset/Chat=Send_enabled@3x.png -------------------------------------------------------------------------------- /Trinap/Resources/Assets.xcassets/Images/sendChat_enabled.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Resources/Assets.xcassets/Images/sendChat_enabled.imageset/Contents.json -------------------------------------------------------------------------------- /Trinap/Resources/Assets.xcassets/Images/star_fill_review.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Resources/Assets.xcassets/Images/star_fill_review.imageset/Contents.json -------------------------------------------------------------------------------- /Trinap/Resources/Assets.xcassets/Images/star_fill_review.imageset/star_fill_review.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Resources/Assets.xcassets/Images/star_fill_review.imageset/star_fill_review.png -------------------------------------------------------------------------------- /Trinap/Resources/Assets.xcassets/Images/star_fill_review.imageset/star_fill_review@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Resources/Assets.xcassets/Images/star_fill_review.imageset/star_fill_review@2x.png -------------------------------------------------------------------------------- /Trinap/Resources/Assets.xcassets/Images/star_fill_review.imageset/star_fill_review@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Resources/Assets.xcassets/Images/star_fill_review.imageset/star_fill_review@3x.png -------------------------------------------------------------------------------- /Trinap/Resources/Assets.xcassets/Images/star_review.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Resources/Assets.xcassets/Images/star_review.imageset/Contents.json -------------------------------------------------------------------------------- /Trinap/Resources/Assets.xcassets/Images/star_review.imageset/star_review.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Resources/Assets.xcassets/Images/star_review.imageset/star_review.png -------------------------------------------------------------------------------- /Trinap/Resources/Assets.xcassets/Images/star_review.imageset/star_review@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Resources/Assets.xcassets/Images/star_review.imageset/star_review@2x.png -------------------------------------------------------------------------------- /Trinap/Resources/Assets.xcassets/Images/star_review.imageset/star_review@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Resources/Assets.xcassets/Images/star_review.imageset/star_review@3x.png -------------------------------------------------------------------------------- /Trinap/Resources/Assets.xcassets/Images/user.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Resources/Assets.xcassets/Images/user.imageset/Contents.json -------------------------------------------------------------------------------- /Trinap/Resources/Assets.xcassets/Images/user.imageset/user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Resources/Assets.xcassets/Images/user.imageset/user.png -------------------------------------------------------------------------------- /Trinap/Resources/Assets.xcassets/Images/user.imageset/user@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Resources/Assets.xcassets/Images/user.imageset/user@2x.png -------------------------------------------------------------------------------- /Trinap/Resources/Assets.xcassets/Images/user.imageset/user@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Resources/Assets.xcassets/Images/user.imageset/user@3x.png -------------------------------------------------------------------------------- /Trinap/Resources/Font/Pretendard-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Resources/Font/Pretendard-Bold.otf -------------------------------------------------------------------------------- /Trinap/Resources/Font/Pretendard-Medium.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Resources/Font/Pretendard-Medium.otf -------------------------------------------------------------------------------- /Trinap/Resources/Font/Pretendard-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Resources/Font/Pretendard-Regular.otf -------------------------------------------------------------------------------- /Trinap/Resources/Font/Pretendard-SemiBold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Resources/Font/Pretendard-SemiBold.otf -------------------------------------------------------------------------------- /Trinap/Resources/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Resources/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Trinap/Resources/OpenSourceList.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Resources/OpenSourceList.json -------------------------------------------------------------------------------- /Trinap/Sources/App/AppCoordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/App/AppCoordinator.swift -------------------------------------------------------------------------------- /Trinap/Sources/App/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/App/AppDelegate.swift -------------------------------------------------------------------------------- /Trinap/Sources/App/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/App/SceneDelegate.swift -------------------------------------------------------------------------------- /Trinap/Sources/App/Splash/SplashViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/App/Splash/SplashViewController.swift -------------------------------------------------------------------------------- /Trinap/Sources/App/Splash/SplashViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/App/Splash/SplashViewModel.swift -------------------------------------------------------------------------------- /Trinap/Sources/Config/Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Config/Debug.xcconfig -------------------------------------------------------------------------------- /Trinap/Sources/Config/Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Config/Release.xcconfig -------------------------------------------------------------------------------- /Trinap/Sources/Data/DTO/BlockDTO.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Data/DTO/BlockDTO.swift -------------------------------------------------------------------------------- /Trinap/Sources/Data/DTO/ChatDTO.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Data/DTO/ChatDTO.swift -------------------------------------------------------------------------------- /Trinap/Sources/Data/DTO/ChatroomDTO.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Data/DTO/ChatroomDTO.swift -------------------------------------------------------------------------------- /Trinap/Sources/Data/DTO/ContactDTO.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Data/DTO/ContactDTO.swift -------------------------------------------------------------------------------- /Trinap/Sources/Data/DTO/NicknameDTO.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Data/DTO/NicknameDTO.swift -------------------------------------------------------------------------------- /Trinap/Sources/Data/DTO/OpenSourceInfoDTO.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Data/DTO/OpenSourceInfoDTO.swift -------------------------------------------------------------------------------- /Trinap/Sources/Data/DTO/PhotographerDTO.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Data/DTO/PhotographerDTO.swift -------------------------------------------------------------------------------- /Trinap/Sources/Data/DTO/ReservationDTO.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Data/DTO/ReservationDTO.swift -------------------------------------------------------------------------------- /Trinap/Sources/Data/DTO/ReviewDTO.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Data/DTO/ReviewDTO.swift -------------------------------------------------------------------------------- /Trinap/Sources/Data/DTO/SueDTO.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Data/DTO/SueDTO.swift -------------------------------------------------------------------------------- /Trinap/Sources/Data/DTO/UserDTO.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Data/DTO/UserDTO.swift -------------------------------------------------------------------------------- /Trinap/Sources/Data/Endpoint/RandomNicknameEndpoint.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Data/Endpoint/RandomNicknameEndpoint.swift -------------------------------------------------------------------------------- /Trinap/Sources/Data/Endpoint/TokenEndpoint.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Data/Endpoint/TokenEndpoint.swift -------------------------------------------------------------------------------- /Trinap/Sources/Data/NetworkService/DefaultNetworkService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Data/NetworkService/DefaultNetworkService.swift -------------------------------------------------------------------------------- /Trinap/Sources/Data/NetworkService/Endpoint.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Data/NetworkService/Endpoint.swift -------------------------------------------------------------------------------- /Trinap/Sources/Data/NetworkService/NetworkError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Data/NetworkService/NetworkError.swift -------------------------------------------------------------------------------- /Trinap/Sources/Data/NetworkService/NetworkService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Data/NetworkService/NetworkService.swift -------------------------------------------------------------------------------- /Trinap/Sources/Data/Repositories/Auth/DefaultAuthRepository.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Data/Repositories/Auth/DefaultAuthRepository.swift -------------------------------------------------------------------------------- /Trinap/Sources/Data/Repositories/Block/DefaultBlockRepository.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Data/Repositories/Block/DefaultBlockRepository.swift -------------------------------------------------------------------------------- /Trinap/Sources/Data/Repositories/Chat/DefaultChatRepository.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Data/Repositories/Chat/DefaultChatRepository.swift -------------------------------------------------------------------------------- /Trinap/Sources/Data/Repositories/Chat/DefaultChatroomRepository.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Data/Repositories/Chat/DefaultChatroomRepository.swift -------------------------------------------------------------------------------- /Trinap/Sources/Data/Repositories/Fake/FakeAuthRepository.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Data/Repositories/Fake/FakeAuthRepository.swift -------------------------------------------------------------------------------- /Trinap/Sources/Data/Repositories/Fake/FakeBlockRepository.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Data/Repositories/Fake/FakeBlockRepository.swift -------------------------------------------------------------------------------- /Trinap/Sources/Data/Repositories/Fake/FakeChatRepository.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Data/Repositories/Fake/FakeChatRepository.swift -------------------------------------------------------------------------------- /Trinap/Sources/Data/Repositories/Fake/FakeChatroomRepository.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Data/Repositories/Fake/FakeChatroomRepository.swift -------------------------------------------------------------------------------- /Trinap/Sources/Data/Repositories/Fake/FakeError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Data/Repositories/Fake/FakeError.swift -------------------------------------------------------------------------------- /Trinap/Sources/Data/Repositories/Fake/FakeMapRepository.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Data/Repositories/Fake/FakeMapRepository.swift -------------------------------------------------------------------------------- /Trinap/Sources/Data/Repositories/Fake/FakePhotographerRepository.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Data/Repositories/Fake/FakePhotographerRepository.swift -------------------------------------------------------------------------------- /Trinap/Sources/Data/Repositories/Fake/FakeRepositoryType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Data/Repositories/Fake/FakeRepositoryType.swift -------------------------------------------------------------------------------- /Trinap/Sources/Data/Repositories/Fake/FakeReservationRepository.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Data/Repositories/Fake/FakeReservationRepository.swift -------------------------------------------------------------------------------- /Trinap/Sources/Data/Repositories/Fake/FakeReviewRepository.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Data/Repositories/Fake/FakeReviewRepository.swift -------------------------------------------------------------------------------- /Trinap/Sources/Data/Repositories/Fake/FakeSueRepository.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Data/Repositories/Fake/FakeSueRepository.swift -------------------------------------------------------------------------------- /Trinap/Sources/Data/Repositories/Fake/FakeUploadImageRepository.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Data/Repositories/Fake/FakeUploadImageRepository.swift -------------------------------------------------------------------------------- /Trinap/Sources/Data/Repositories/Fake/FakeUserRepository.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Data/Repositories/Fake/FakeUserRepository.swift -------------------------------------------------------------------------------- /Trinap/Sources/Data/Repositories/Image/DefaultUploadImageRepository.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Data/Repositories/Image/DefaultUploadImageRepository.swift -------------------------------------------------------------------------------- /Trinap/Sources/Data/Repositories/Location/DefaultLocationRepository.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Data/Repositories/Location/DefaultLocationRepository.swift -------------------------------------------------------------------------------- /Trinap/Sources/Data/Repositories/Map/DefaultMapRepository.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Data/Repositories/Map/DefaultMapRepository.swift -------------------------------------------------------------------------------- /Trinap/Sources/Data/Repositories/OpenSource/DefaultOpenSourceListRepository.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Data/Repositories/OpenSource/DefaultOpenSourceListRepository.swift -------------------------------------------------------------------------------- /Trinap/Sources/Data/Repositories/Photograhper/DefaultPhotograhperRepository.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Data/Repositories/Photograhper/DefaultPhotograhperRepository.swift -------------------------------------------------------------------------------- /Trinap/Sources/Data/Repositories/Reservation/DefaultReservationRepository.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Data/Repositories/Reservation/DefaultReservationRepository.swift -------------------------------------------------------------------------------- /Trinap/Sources/Data/Repositories/Review/DefaultReviewRepository.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Data/Repositories/Review/DefaultReviewRepository.swift -------------------------------------------------------------------------------- /Trinap/Sources/Data/Repositories/Sue/DefaultSueRepository.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Data/Repositories/Sue/DefaultSueRepository.swift -------------------------------------------------------------------------------- /Trinap/Sources/Data/Repositories/User/DefaultUserRepository.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Data/Repositories/User/DefaultUserRepository.swift -------------------------------------------------------------------------------- /Trinap/Sources/Domain/Models/Block.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Domain/Models/Block.swift -------------------------------------------------------------------------------- /Trinap/Sources/Domain/Models/Chat/Chat.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Domain/Models/Chat/Chat.swift -------------------------------------------------------------------------------- /Trinap/Sources/Domain/Models/Chat/ChatPreview.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Domain/Models/Chat/ChatPreview.swift -------------------------------------------------------------------------------- /Trinap/Sources/Domain/Models/Chat/Chatroom.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Domain/Models/Chat/Chatroom.swift -------------------------------------------------------------------------------- /Trinap/Sources/Domain/Models/Contact.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Domain/Models/Contact.swift -------------------------------------------------------------------------------- /Trinap/Sources/Domain/Models/Coordinate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Domain/Models/Coordinate.swift -------------------------------------------------------------------------------- /Trinap/Sources/Domain/Models/Filter/FilterMode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Domain/Models/Filter/FilterMode.swift -------------------------------------------------------------------------------- /Trinap/Sources/Domain/Models/Filter/PhotographerFilter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Domain/Models/Filter/PhotographerFilter.swift -------------------------------------------------------------------------------- /Trinap/Sources/Domain/Models/Filter/ReservationFilter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Domain/Models/Filter/ReservationFilter.swift -------------------------------------------------------------------------------- /Trinap/Sources/Domain/Models/Filter/TagType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Domain/Models/Filter/TagType.swift -------------------------------------------------------------------------------- /Trinap/Sources/Domain/Models/MyPageItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Domain/Models/MyPageItem.swift -------------------------------------------------------------------------------- /Trinap/Sources/Domain/Models/OpenSource/OpenSourceInfo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Domain/Models/OpenSource/OpenSourceInfo.swift -------------------------------------------------------------------------------- /Trinap/Sources/Domain/Models/Photographer/Photographer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Domain/Models/Photographer/Photographer.swift -------------------------------------------------------------------------------- /Trinap/Sources/Domain/Models/Photographer/PhotographerPreview.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Domain/Models/Photographer/PhotographerPreview.swift -------------------------------------------------------------------------------- /Trinap/Sources/Domain/Models/Photographer/PhotographerSection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Domain/Models/Photographer/PhotographerSection.swift -------------------------------------------------------------------------------- /Trinap/Sources/Domain/Models/Photographer/PhotographerUser.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Domain/Models/Photographer/PhotographerUser.swift -------------------------------------------------------------------------------- /Trinap/Sources/Domain/Models/Photographer/Picture.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Domain/Models/Photographer/Picture.swift -------------------------------------------------------------------------------- /Trinap/Sources/Domain/Models/Reservation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Domain/Models/Reservation.swift -------------------------------------------------------------------------------- /Trinap/Sources/Domain/Models/ReservationDate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Domain/Models/ReservationDate.swift -------------------------------------------------------------------------------- /Trinap/Sources/Domain/Models/Review/Review.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Domain/Models/Review/Review.swift -------------------------------------------------------------------------------- /Trinap/Sources/Domain/Models/Review/ReviewInformation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Domain/Models/Review/ReviewInformation.swift -------------------------------------------------------------------------------- /Trinap/Sources/Domain/Models/Review/ReviewSummary.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Domain/Models/Review/ReviewSummary.swift -------------------------------------------------------------------------------- /Trinap/Sources/Domain/Models/Review/UserReview.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Domain/Models/Review/UserReview.swift -------------------------------------------------------------------------------- /Trinap/Sources/Domain/Models/SharedLocation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Domain/Models/SharedLocation.swift -------------------------------------------------------------------------------- /Trinap/Sources/Domain/Models/SignInResult.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Domain/Models/SignInResult.swift -------------------------------------------------------------------------------- /Trinap/Sources/Domain/Models/Space.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Domain/Models/Space.swift -------------------------------------------------------------------------------- /Trinap/Sources/Domain/Models/Sue.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Domain/Models/Sue.swift -------------------------------------------------------------------------------- /Trinap/Sources/Domain/Models/User.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Domain/Models/User.swift -------------------------------------------------------------------------------- /Trinap/Sources/Domain/Repositories/Auth/AuthRepository.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Domain/Repositories/Auth/AuthRepository.swift -------------------------------------------------------------------------------- /Trinap/Sources/Domain/Repositories/Block/BlockRepository.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Domain/Repositories/Block/BlockRepository.swift -------------------------------------------------------------------------------- /Trinap/Sources/Domain/Repositories/Chat/ChatRepository.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Domain/Repositories/Chat/ChatRepository.swift -------------------------------------------------------------------------------- /Trinap/Sources/Domain/Repositories/Chat/ChatroomRepository.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Domain/Repositories/Chat/ChatroomRepository.swift -------------------------------------------------------------------------------- /Trinap/Sources/Domain/Repositories/Image/UploadImageRepository.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Domain/Repositories/Image/UploadImageRepository.swift -------------------------------------------------------------------------------- /Trinap/Sources/Domain/Repositories/Location/LocationRepository.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Domain/Repositories/Location/LocationRepository.swift -------------------------------------------------------------------------------- /Trinap/Sources/Domain/Repositories/Map/MapRepository.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Domain/Repositories/Map/MapRepository.swift -------------------------------------------------------------------------------- /Trinap/Sources/Domain/Repositories/OpenSource/OpenSourceListRepository.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Domain/Repositories/OpenSource/OpenSourceListRepository.swift -------------------------------------------------------------------------------- /Trinap/Sources/Domain/Repositories/Photographer/PhotographerRepository.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Domain/Repositories/Photographer/PhotographerRepository.swift -------------------------------------------------------------------------------- /Trinap/Sources/Domain/Repositories/Reservation/ReservationRepository.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Domain/Repositories/Reservation/ReservationRepository.swift -------------------------------------------------------------------------------- /Trinap/Sources/Domain/Repositories/Review/ReviewRepository.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Domain/Repositories/Review/ReviewRepository.swift -------------------------------------------------------------------------------- /Trinap/Sources/Domain/Repositories/Sue/SueRepository.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Domain/Repositories/Sue/SueRepository.swift -------------------------------------------------------------------------------- /Trinap/Sources/Domain/Repositories/User/UserRepository.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Domain/Repositories/User/UserRepository.swift -------------------------------------------------------------------------------- /Trinap/Sources/Domain/UseCases/Auth/DropOut/DefaultDropOutUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Domain/UseCases/Auth/DropOut/DefaultDropOutUseCase.swift -------------------------------------------------------------------------------- /Trinap/Sources/Domain/UseCases/Auth/DropOut/DropOutUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Domain/UseCases/Auth/DropOut/DropOutUseCase.swift -------------------------------------------------------------------------------- /Trinap/Sources/Domain/UseCases/Auth/SignIn/CreateUserUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Domain/UseCases/Auth/SignIn/CreateUserUseCase.swift -------------------------------------------------------------------------------- /Trinap/Sources/Domain/UseCases/Auth/SignIn/DefaultCreateUserUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Domain/UseCases/Auth/SignIn/DefaultCreateUserUseCase.swift -------------------------------------------------------------------------------- /Trinap/Sources/Domain/UseCases/Auth/SignIn/DefaultSignInUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Domain/UseCases/Auth/SignIn/DefaultSignInUseCase.swift -------------------------------------------------------------------------------- /Trinap/Sources/Domain/UseCases/Auth/SignIn/SignInUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Domain/UseCases/Auth/SignIn/SignInUseCase.swift -------------------------------------------------------------------------------- /Trinap/Sources/Domain/UseCases/Auth/SignOut/DefaultSignOutUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Domain/UseCases/Auth/SignOut/DefaultSignOutUseCase.swift -------------------------------------------------------------------------------- /Trinap/Sources/Domain/UseCases/Auth/SignOut/SignOutUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Domain/UseCases/Auth/SignOut/SignOutUseCase.swift -------------------------------------------------------------------------------- /Trinap/Sources/Domain/UseCases/Block/DefaultCreateBlockUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Domain/UseCases/Block/DefaultCreateBlockUseCase.swift -------------------------------------------------------------------------------- /Trinap/Sources/Domain/UseCases/Block/DefaultFetchBlockedUsersUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Domain/UseCases/Block/DefaultFetchBlockedUsersUseCase.swift -------------------------------------------------------------------------------- /Trinap/Sources/Domain/UseCases/Block/DefaultRemoveBlockUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Domain/UseCases/Block/DefaultRemoveBlockUseCase.swift -------------------------------------------------------------------------------- /Trinap/Sources/Domain/UseCases/Block/Protocols/CreateBlockUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Domain/UseCases/Block/Protocols/CreateBlockUseCase.swift -------------------------------------------------------------------------------- /Trinap/Sources/Domain/UseCases/Block/Protocols/FetchBlockedUsersUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Domain/UseCases/Block/Protocols/FetchBlockedUsersUseCase.swift -------------------------------------------------------------------------------- /Trinap/Sources/Domain/UseCases/Block/Protocols/RemoveBlockUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Domain/UseCases/Block/Protocols/RemoveBlockUseCase.swift -------------------------------------------------------------------------------- /Trinap/Sources/Domain/UseCases/Chat/DefaultCreateChatroomUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Domain/UseCases/Chat/DefaultCreateChatroomUseCase.swift -------------------------------------------------------------------------------- /Trinap/Sources/Domain/UseCases/Chat/DefaultLeaveChatroomUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Domain/UseCases/Chat/DefaultLeaveChatroomUseCase.swift -------------------------------------------------------------------------------- /Trinap/Sources/Domain/UseCases/Chat/DefaultObserveChatUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Domain/UseCases/Chat/DefaultObserveChatUseCase.swift -------------------------------------------------------------------------------- /Trinap/Sources/Domain/UseCases/Chat/DefaultObserveLastChatUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Domain/UseCases/Chat/DefaultObserveLastChatUseCase.swift -------------------------------------------------------------------------------- /Trinap/Sources/Domain/UseCases/Chat/DefaultSendChatUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Domain/UseCases/Chat/DefaultSendChatUseCase.swift -------------------------------------------------------------------------------- /Trinap/Sources/Domain/UseCases/Chat/DefaultSendFirstChatUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Domain/UseCases/Chat/DefaultSendFirstChatUseCase.swift -------------------------------------------------------------------------------- /Trinap/Sources/Domain/UseCases/Chat/DefaultUpdateIsCheckedUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Domain/UseCases/Chat/DefaultUpdateIsCheckedUseCase.swift -------------------------------------------------------------------------------- /Trinap/Sources/Domain/UseCases/Chat/Protocols/CreateChatroomUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Domain/UseCases/Chat/Protocols/CreateChatroomUseCase.swift -------------------------------------------------------------------------------- /Trinap/Sources/Domain/UseCases/Chat/Protocols/LeaveChatroomUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Domain/UseCases/Chat/Protocols/LeaveChatroomUseCase.swift -------------------------------------------------------------------------------- /Trinap/Sources/Domain/UseCases/Chat/Protocols/ObserveChatUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Domain/UseCases/Chat/Protocols/ObserveChatUseCase.swift -------------------------------------------------------------------------------- /Trinap/Sources/Domain/UseCases/Chat/Protocols/ObserveLastChatUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Domain/UseCases/Chat/Protocols/ObserveLastChatUseCase.swift -------------------------------------------------------------------------------- /Trinap/Sources/Domain/UseCases/Chat/Protocols/SendChatUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Domain/UseCases/Chat/Protocols/SendChatUseCase.swift -------------------------------------------------------------------------------- /Trinap/Sources/Domain/UseCases/Chat/Protocols/SendFirstChatUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Domain/UseCases/Chat/Protocols/SendFirstChatUseCase.swift -------------------------------------------------------------------------------- /Trinap/Sources/Domain/UseCases/Chat/Protocols/UpdateIsCheckedUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Domain/UseCases/Chat/Protocols/UpdateIsCheckedUseCase.swift -------------------------------------------------------------------------------- /Trinap/Sources/Domain/UseCases/ChatPreviews/DefaultObserveChatPreviewsUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Domain/UseCases/ChatPreviews/DefaultObserveChatPreviewsUseCase.swift -------------------------------------------------------------------------------- /Trinap/Sources/Domain/UseCases/ChatPreviews/FetchChatPreviewsUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Domain/UseCases/ChatPreviews/FetchChatPreviewsUseCase.swift -------------------------------------------------------------------------------- /Trinap/Sources/Domain/UseCases/Contact/CreateContactUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Domain/UseCases/Contact/CreateContactUseCase.swift -------------------------------------------------------------------------------- /Trinap/Sources/Domain/UseCases/Contact/FetchContactUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Domain/UseCases/Contact/FetchContactUseCase.swift -------------------------------------------------------------------------------- /Trinap/Sources/Domain/UseCases/DefaultUploadImageUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Domain/UseCases/DefaultUploadImageUseCase.swift -------------------------------------------------------------------------------- /Trinap/Sources/Domain/UseCases/LocationShare/DefaultEndLocationShareUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Domain/UseCases/LocationShare/DefaultEndLocationShareUseCase.swift -------------------------------------------------------------------------------- /Trinap/Sources/Domain/UseCases/LocationShare/DefaultObserveLocationUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Domain/UseCases/LocationShare/DefaultObserveLocationUseCase.swift -------------------------------------------------------------------------------- /Trinap/Sources/Domain/UseCases/LocationShare/DefaultUpdateLocationUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Domain/UseCases/LocationShare/DefaultUpdateLocationUseCase.swift -------------------------------------------------------------------------------- /Trinap/Sources/Domain/UseCases/LocationShare/EndLocationShareUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Domain/UseCases/LocationShare/EndLocationShareUseCase.swift -------------------------------------------------------------------------------- /Trinap/Sources/Domain/UseCases/LocationShare/ObserveLocationUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Domain/UseCases/LocationShare/ObserveLocationUseCase.swift -------------------------------------------------------------------------------- /Trinap/Sources/Domain/UseCases/LocationShare/UpdateLocationUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Domain/UseCases/LocationShare/UpdateLocationUseCase.swift -------------------------------------------------------------------------------- /Trinap/Sources/Domain/UseCases/MyPage/DefaultEditUserUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Domain/UseCases/MyPage/DefaultEditUserUseCase.swift -------------------------------------------------------------------------------- /Trinap/Sources/Domain/UseCases/MyPage/DefaultFetchUserUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Domain/UseCases/MyPage/DefaultFetchUserUseCase.swift -------------------------------------------------------------------------------- /Trinap/Sources/Domain/UseCases/MyPage/EditUserUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Domain/UseCases/MyPage/EditUserUseCase.swift -------------------------------------------------------------------------------- /Trinap/Sources/Domain/UseCases/MyPage/FetchUserUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Domain/UseCases/MyPage/FetchUserUseCase.swift -------------------------------------------------------------------------------- /Trinap/Sources/Domain/UseCases/OpenSource/DefaultFetchOpenSourceListUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Domain/UseCases/OpenSource/DefaultFetchOpenSourceListUseCase.swift -------------------------------------------------------------------------------- /Trinap/Sources/Domain/UseCases/OpenSource/FetchOpenSourceListUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Domain/UseCases/OpenSource/FetchOpenSourceListUseCase.swift -------------------------------------------------------------------------------- /Trinap/Sources/Domain/UseCases/Photographer/DefaultConvertDateToStringUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Domain/UseCases/Photographer/DefaultConvertDateToStringUseCase.swift -------------------------------------------------------------------------------- /Trinap/Sources/Domain/UseCases/Photographer/DefaultEditPhotographerUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Domain/UseCases/Photographer/DefaultEditPhotographerUseCase.swift -------------------------------------------------------------------------------- /Trinap/Sources/Domain/UseCases/Photographer/DefaultEditPortfolioPictureUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Domain/UseCases/Photographer/DefaultEditPortfolioPictureUseCase.swift -------------------------------------------------------------------------------- /Trinap/Sources/Domain/UseCases/Photographer/DefaultFetchPhotographerPreviewsUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Domain/UseCases/Photographer/DefaultFetchPhotographerPreviewsUseCase.swift -------------------------------------------------------------------------------- /Trinap/Sources/Domain/UseCases/Photographer/DefaultFetchPhotographerUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Domain/UseCases/Photographer/DefaultFetchPhotographerUseCase.swift -------------------------------------------------------------------------------- /Trinap/Sources/Domain/UseCases/Photographer/DefaultFetchPhotographerUserUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Domain/UseCases/Photographer/DefaultFetchPhotographerUserUseCase.swift -------------------------------------------------------------------------------- /Trinap/Sources/Domain/UseCases/Photographer/Protocols/ConvertDateToStringUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Domain/UseCases/Photographer/Protocols/ConvertDateToStringUseCase.swift -------------------------------------------------------------------------------- /Trinap/Sources/Domain/UseCases/Photographer/Protocols/EditPhotographerUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Domain/UseCases/Photographer/Protocols/EditPhotographerUseCase.swift -------------------------------------------------------------------------------- /Trinap/Sources/Domain/UseCases/Photographer/Protocols/EditPortfolioPictureUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Domain/UseCases/Photographer/Protocols/EditPortfolioPictureUseCase.swift -------------------------------------------------------------------------------- /Trinap/Sources/Domain/UseCases/Photographer/Protocols/FetchPhotographerPreviewsUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Domain/UseCases/Photographer/Protocols/FetchPhotographerPreviewsUseCase.swift -------------------------------------------------------------------------------- /Trinap/Sources/Domain/UseCases/Photographer/Protocols/FetchPhotographerUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Domain/UseCases/Photographer/Protocols/FetchPhotographerUseCase.swift -------------------------------------------------------------------------------- /Trinap/Sources/Domain/UseCases/Photographer/Protocols/FetchPhotographerUserUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Domain/UseCases/Photographer/Protocols/FetchPhotographerUserUseCase.swift -------------------------------------------------------------------------------- /Trinap/Sources/Domain/UseCases/Reservation/DefaultAcceptReservationRequestUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Domain/UseCases/Reservation/DefaultAcceptReservationRequestUseCase.swift -------------------------------------------------------------------------------- /Trinap/Sources/Domain/UseCases/Reservation/DefaultCancelReservationRequestUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Domain/UseCases/Reservation/DefaultCancelReservationRequestUseCase.swift -------------------------------------------------------------------------------- /Trinap/Sources/Domain/UseCases/Reservation/DefaultCompletePhotoshootUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Domain/UseCases/Reservation/DefaultCompletePhotoshootUseCase.swift -------------------------------------------------------------------------------- /Trinap/Sources/Domain/UseCases/Reservation/DefaultCreateReservationDateUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Domain/UseCases/Reservation/DefaultCreateReservationDateUseCase.swift -------------------------------------------------------------------------------- /Trinap/Sources/Domain/UseCases/Reservation/DefaultCreateReservationUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Domain/UseCases/Reservation/DefaultCreateReservationUseCase.swift -------------------------------------------------------------------------------- /Trinap/Sources/Domain/UseCases/Reservation/DefaultFetchReservationPreviewsUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Domain/UseCases/Reservation/DefaultFetchReservationPreviewsUseCase.swift -------------------------------------------------------------------------------- /Trinap/Sources/Domain/UseCases/Reservation/DefaultFetchReservationUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Domain/UseCases/Reservation/DefaultFetchReservationUseCase.swift -------------------------------------------------------------------------------- /Trinap/Sources/Domain/UseCases/Reservation/DefaultFetchReservationUserTypeUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Domain/UseCases/Reservation/DefaultFetchReservationUserTypeUseCase.swift -------------------------------------------------------------------------------- /Trinap/Sources/Domain/UseCases/Reservation/Protocols/AcceptReservationRequestUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Domain/UseCases/Reservation/Protocols/AcceptReservationRequestUseCase.swift -------------------------------------------------------------------------------- /Trinap/Sources/Domain/UseCases/Reservation/Protocols/CancelReservationRequestUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Domain/UseCases/Reservation/Protocols/CancelReservationRequestUseCase.swift -------------------------------------------------------------------------------- /Trinap/Sources/Domain/UseCases/Reservation/Protocols/CompletePhotoshootUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Domain/UseCases/Reservation/Protocols/CompletePhotoshootUseCase.swift -------------------------------------------------------------------------------- /Trinap/Sources/Domain/UseCases/Reservation/Protocols/CreateReservationDateUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Domain/UseCases/Reservation/Protocols/CreateReservationDateUseCase.swift -------------------------------------------------------------------------------- /Trinap/Sources/Domain/UseCases/Reservation/Protocols/CreateReservationUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Domain/UseCases/Reservation/Protocols/CreateReservationUseCase.swift -------------------------------------------------------------------------------- /Trinap/Sources/Domain/UseCases/Reservation/Protocols/FetchReservationPreviewsUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Domain/UseCases/Reservation/Protocols/FetchReservationPreviewsUseCase.swift -------------------------------------------------------------------------------- /Trinap/Sources/Domain/UseCases/Reservation/Protocols/FetchReservationUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Domain/UseCases/Reservation/Protocols/FetchReservationUseCase.swift -------------------------------------------------------------------------------- /Trinap/Sources/Domain/UseCases/Reservation/Protocols/FetchReservationUserTypeUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Domain/UseCases/Reservation/Protocols/FetchReservationUserTypeUseCase.swift -------------------------------------------------------------------------------- /Trinap/Sources/Domain/UseCases/Review/CreateReviewUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Domain/UseCases/Review/CreateReviewUseCase.swift -------------------------------------------------------------------------------- /Trinap/Sources/Domain/UseCases/Review/DefaultCreateReviewUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Domain/UseCases/Review/DefaultCreateReviewUseCase.swift -------------------------------------------------------------------------------- /Trinap/Sources/Domain/UseCases/Review/DefaultFetchReviewInformationUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Domain/UseCases/Review/DefaultFetchReviewInformationUseCase.swift -------------------------------------------------------------------------------- /Trinap/Sources/Domain/UseCases/Review/DefaultFetchReviewUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Domain/UseCases/Review/DefaultFetchReviewUseCase.swift -------------------------------------------------------------------------------- /Trinap/Sources/Domain/UseCases/Review/FetchReviewUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Domain/UseCases/Review/FetchReviewUseCase.swift -------------------------------------------------------------------------------- /Trinap/Sources/Domain/UseCases/Review/Ptotocols/FetchReviewInformationUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Domain/UseCases/Review/Ptotocols/FetchReviewInformationUseCase.swift -------------------------------------------------------------------------------- /Trinap/Sources/Domain/UseCases/Search/DefaultFetchCurrentLocationUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Domain/UseCases/Search/DefaultFetchCurrentLocationUseCase.swift -------------------------------------------------------------------------------- /Trinap/Sources/Domain/UseCases/Search/DefaultSearchLocationUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Domain/UseCases/Search/DefaultSearchLocationUseCase.swift -------------------------------------------------------------------------------- /Trinap/Sources/Domain/UseCases/Search/Protocol/FetchCurrentLocationUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Domain/UseCases/Search/Protocol/FetchCurrentLocationUseCase.swift -------------------------------------------------------------------------------- /Trinap/Sources/Domain/UseCases/Search/Protocol/SearchLocationUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Domain/UseCases/Search/Protocol/SearchLocationUseCase.swift -------------------------------------------------------------------------------- /Trinap/Sources/Domain/UseCases/Sue/DefaultCreateSueUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Domain/UseCases/Sue/DefaultCreateSueUseCase.swift -------------------------------------------------------------------------------- /Trinap/Sources/Domain/UseCases/Sue/Protocols/CreateSueUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Domain/UseCases/Sue/Protocols/CreateSueUseCase.swift -------------------------------------------------------------------------------- /Trinap/Sources/Domain/UseCases/UploadImageUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Domain/UseCases/UploadImageUseCase.swift -------------------------------------------------------------------------------- /Trinap/Sources/Presenter/Auth/Coordinator/AuthCoordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Presenter/Auth/Coordinator/AuthCoordinator.swift -------------------------------------------------------------------------------- /Trinap/Sources/Presenter/Auth/CreateUser/CreateUserViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Presenter/Auth/CreateUser/CreateUserViewController.swift -------------------------------------------------------------------------------- /Trinap/Sources/Presenter/Auth/CreateUser/CreateUserViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Presenter/Auth/CreateUser/CreateUserViewModel.swift -------------------------------------------------------------------------------- /Trinap/Sources/Presenter/Auth/SignIn/SignInViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Presenter/Auth/SignIn/SignInViewController.swift -------------------------------------------------------------------------------- /Trinap/Sources/Presenter/Auth/SignIn/SignInViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Presenter/Auth/SignIn/SignInViewModel.swift -------------------------------------------------------------------------------- /Trinap/Sources/Presenter/Common/Base/BaseCollectionReusableView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Presenter/Common/Base/BaseCollectionReusableView.swift -------------------------------------------------------------------------------- /Trinap/Sources/Presenter/Common/Base/BaseCollectionViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Presenter/Common/Base/BaseCollectionViewCell.swift -------------------------------------------------------------------------------- /Trinap/Sources/Presenter/Common/Base/BaseTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Presenter/Common/Base/BaseTableViewCell.swift -------------------------------------------------------------------------------- /Trinap/Sources/Presenter/Common/Base/BaseView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Presenter/Common/Base/BaseView.swift -------------------------------------------------------------------------------- /Trinap/Sources/Presenter/Common/Base/BaseViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Presenter/Common/Base/BaseViewController.swift -------------------------------------------------------------------------------- /Trinap/Sources/Presenter/Common/Coordinator/Coordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Presenter/Common/Coordinator/Coordinator.swift -------------------------------------------------------------------------------- /Trinap/Sources/Presenter/Common/Extension/ASAuthorizationController+Rx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Presenter/Common/Extension/ASAuthorizationController+Rx.swift -------------------------------------------------------------------------------- /Trinap/Sources/Presenter/Common/Extension/CALayer+Border.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Presenter/Common/Extension/CALayer+Border.swift -------------------------------------------------------------------------------- /Trinap/Sources/Presenter/Common/Extension/CLLocationManager+Rx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Presenter/Common/Extension/CLLocationManager+Rx.swift -------------------------------------------------------------------------------- /Trinap/Sources/Presenter/Common/Extension/Date+ProperText.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Presenter/Common/Extension/Date+ProperText.swift -------------------------------------------------------------------------------- /Trinap/Sources/Presenter/Common/Extension/MKAnnotationView+Reusable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Presenter/Common/Extension/MKAnnotationView+Reusable.swift -------------------------------------------------------------------------------- /Trinap/Sources/Presenter/Common/Extension/MapView+Rx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Presenter/Common/Extension/MapView+Rx.swift -------------------------------------------------------------------------------- /Trinap/Sources/Presenter/Common/Extension/RxSwift+CollectionViewDataSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Presenter/Common/Extension/RxSwift+CollectionViewDataSource.swift -------------------------------------------------------------------------------- /Trinap/Sources/Presenter/Common/Extension/RxSwift+TableViewDataSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Presenter/Common/Extension/RxSwift+TableViewDataSource.swift -------------------------------------------------------------------------------- /Trinap/Sources/Presenter/Common/Extension/UIAlertController+Builder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Presenter/Common/Extension/UIAlertController+Builder.swift -------------------------------------------------------------------------------- /Trinap/Sources/Presenter/Common/Extension/UICollectionView+Reusable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Presenter/Common/Extension/UICollectionView+Reusable.swift -------------------------------------------------------------------------------- /Trinap/Sources/Presenter/Common/Extension/UIImagePickerController+Rx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Presenter/Common/Extension/UIImagePickerController+Rx.swift -------------------------------------------------------------------------------- /Trinap/Sources/Presenter/Common/Extension/UINavigationController+.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Presenter/Common/Extension/UINavigationController+.swift -------------------------------------------------------------------------------- /Trinap/Sources/Presenter/Common/Extension/UITableView+Reusable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Presenter/Common/Extension/UITableView+Reusable.swift -------------------------------------------------------------------------------- /Trinap/Sources/Presenter/Common/Extension/UIView+AddSubviews.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Presenter/Common/Extension/UIView+AddSubviews.swift -------------------------------------------------------------------------------- /Trinap/Sources/Presenter/Common/Extension/UIView+Keyboard.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Presenter/Common/Extension/UIView+Keyboard.swift -------------------------------------------------------------------------------- /Trinap/Sources/Presenter/Common/Extension/UIViewController+.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Presenter/Common/Extension/UIViewController+.swift -------------------------------------------------------------------------------- /Trinap/Sources/Presenter/Common/Extension/UIViewController+Reactvie.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Presenter/Common/Extension/UIViewController+Reactvie.swift -------------------------------------------------------------------------------- /Trinap/Sources/Presenter/Common/Reusable/CompositionalLayout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Presenter/Common/Reusable/CompositionalLayout.swift -------------------------------------------------------------------------------- /Trinap/Sources/Presenter/Common/Reusable/Divider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Presenter/Common/Reusable/Divider.swift -------------------------------------------------------------------------------- /Trinap/Sources/Presenter/Common/Reusable/Filter/FilterCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Presenter/Common/Reusable/Filter/FilterCell.swift -------------------------------------------------------------------------------- /Trinap/Sources/Presenter/Common/Reusable/Filter/FilterView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Presenter/Common/Reusable/Filter/FilterView.swift -------------------------------------------------------------------------------- /Trinap/Sources/Presenter/Common/Reusable/InformationStackView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Presenter/Common/Reusable/InformationStackView.swift -------------------------------------------------------------------------------- /Trinap/Sources/Presenter/Common/Reusable/LocationTrackButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Presenter/Common/Reusable/LocationTrackButton.swift -------------------------------------------------------------------------------- /Trinap/Sources/Presenter/Common/Reusable/NicknameTextFieldView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Presenter/Common/Reusable/NicknameTextFieldView.swift -------------------------------------------------------------------------------- /Trinap/Sources/Presenter/Common/Reusable/PaddingLabel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Presenter/Common/Reusable/PaddingLabel.swift -------------------------------------------------------------------------------- /Trinap/Sources/Presenter/Common/Reusable/PlaceHolderView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Presenter/Common/Reusable/PlaceHolderView.swift -------------------------------------------------------------------------------- /Trinap/Sources/Presenter/Common/Reusable/ProfileImageView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Presenter/Common/Reusable/ProfileImageView.swift -------------------------------------------------------------------------------- /Trinap/Sources/Presenter/Common/Reusable/ReviewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Presenter/Common/Reusable/ReviewCell.swift -------------------------------------------------------------------------------- /Trinap/Sources/Presenter/Common/Reusable/StarView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Presenter/Common/Reusable/StarView.swift -------------------------------------------------------------------------------- /Trinap/Sources/Presenter/Common/Reusable/TrinapButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Presenter/Common/Reusable/TrinapButton.swift -------------------------------------------------------------------------------- /Trinap/Sources/Presenter/Common/Reusable/TrinapMultiSelectionCalendarView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Presenter/Common/Reusable/TrinapMultiSelectionCalendarView.swift -------------------------------------------------------------------------------- /Trinap/Sources/Presenter/Common/Reusable/TrinapNavigationBarView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Presenter/Common/Reusable/TrinapNavigationBarView.swift -------------------------------------------------------------------------------- /Trinap/Sources/Presenter/Common/Reusable/TrinapSearchBar.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Presenter/Common/Reusable/TrinapSearchBar.swift -------------------------------------------------------------------------------- /Trinap/Sources/Presenter/Common/Reusable/TrinapSingleSelectionCalendarView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Presenter/Common/Reusable/TrinapSingleSelectionCalendarView.swift -------------------------------------------------------------------------------- /Trinap/Sources/Presenter/Common/Reusable/UnderlinedSegmentedControl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Presenter/Common/Reusable/UnderlinedSegmentedControl.swift -------------------------------------------------------------------------------- /Trinap/Sources/Presenter/Common/Reusable/WarningStackView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Presenter/Common/Reusable/WarningStackView.swift -------------------------------------------------------------------------------- /Trinap/Sources/Presenter/Common/ViewModelType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Presenter/Common/ViewModelType.swift -------------------------------------------------------------------------------- /Trinap/Sources/Presenter/TabBar/Chat/Cell/ActionChatCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Presenter/TabBar/Chat/Cell/ActionChatCell.swift -------------------------------------------------------------------------------- /Trinap/Sources/Presenter/TabBar/Chat/Cell/ChatCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Presenter/TabBar/Chat/Cell/ChatCell.swift -------------------------------------------------------------------------------- /Trinap/Sources/Presenter/TabBar/Chat/Cell/ChatContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Presenter/TabBar/Chat/Cell/ChatContentView.swift -------------------------------------------------------------------------------- /Trinap/Sources/Presenter/TabBar/Chat/Cell/ChatPreviewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Presenter/TabBar/Chat/Cell/ChatPreviewCell.swift -------------------------------------------------------------------------------- /Trinap/Sources/Presenter/TabBar/Chat/Cell/ImageChatCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Presenter/TabBar/Chat/Cell/ImageChatCell.swift -------------------------------------------------------------------------------- /Trinap/Sources/Presenter/TabBar/Chat/Cell/LocationShareChatCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Presenter/TabBar/Chat/Cell/LocationShareChatCell.swift -------------------------------------------------------------------------------- /Trinap/Sources/Presenter/TabBar/Chat/Cell/ReservationChatCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Presenter/TabBar/Chat/Cell/ReservationChatCell.swift -------------------------------------------------------------------------------- /Trinap/Sources/Presenter/TabBar/Chat/Cell/TextChatCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Presenter/TabBar/Chat/Cell/TextChatCell.swift -------------------------------------------------------------------------------- /Trinap/Sources/Presenter/TabBar/Chat/ChatDetail/ChatDetailViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Presenter/TabBar/Chat/ChatDetail/ChatDetailViewController.swift -------------------------------------------------------------------------------- /Trinap/Sources/Presenter/TabBar/Chat/ChatDetail/ChatDetailViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Presenter/TabBar/Chat/ChatDetail/ChatDetailViewModel.swift -------------------------------------------------------------------------------- /Trinap/Sources/Presenter/TabBar/Chat/ChatDetail/ChatTableView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Presenter/TabBar/Chat/ChatDetail/ChatTableView.swift -------------------------------------------------------------------------------- /Trinap/Sources/Presenter/TabBar/Chat/ChatNavigationTitleView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Presenter/TabBar/Chat/ChatNavigationTitleView.swift -------------------------------------------------------------------------------- /Trinap/Sources/Presenter/TabBar/Chat/ChatPreviewsViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Presenter/TabBar/Chat/ChatPreviewsViewController.swift -------------------------------------------------------------------------------- /Trinap/Sources/Presenter/TabBar/Chat/ChatPreviewsViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Presenter/TabBar/Chat/ChatPreviewsViewModel.swift -------------------------------------------------------------------------------- /Trinap/Sources/Presenter/TabBar/Chat/Coordinator/ChatCoordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Presenter/TabBar/Chat/Coordinator/ChatCoordinator.swift -------------------------------------------------------------------------------- /Trinap/Sources/Presenter/TabBar/Chat/Coordinator/ChatDetailCoordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Presenter/TabBar/Chat/Coordinator/ChatDetailCoordinator.swift -------------------------------------------------------------------------------- /Trinap/Sources/Presenter/TabBar/Chat/Custom/ChatInputView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Presenter/TabBar/Chat/Custom/ChatInputView.swift -------------------------------------------------------------------------------- /Trinap/Sources/Presenter/TabBar/Chat/Custom/UnreadAccessoryView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Presenter/TabBar/Chat/Custom/UnreadAccessoryView.swift -------------------------------------------------------------------------------- /Trinap/Sources/Presenter/TabBar/Chat/Location/LocationShareViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Presenter/TabBar/Chat/Location/LocationShareViewController.swift -------------------------------------------------------------------------------- /Trinap/Sources/Presenter/TabBar/Chat/Location/LocationShareViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Presenter/TabBar/Chat/Location/LocationShareViewModel.swift -------------------------------------------------------------------------------- /Trinap/Sources/Presenter/TabBar/Chat/Location/TrinapAnnotationView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Presenter/TabBar/Chat/Location/TrinapAnnotationView.swift -------------------------------------------------------------------------------- /Trinap/Sources/Presenter/TabBar/Coordinator/TabBarCoordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Presenter/TabBar/Coordinator/TabBarCoordinator.swift -------------------------------------------------------------------------------- /Trinap/Sources/Presenter/TabBar/Coordinator/TabBarPageCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Presenter/TabBar/Coordinator/TabBarPageCase.swift -------------------------------------------------------------------------------- /Trinap/Sources/Presenter/TabBar/Coordinator/TabBarPageType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Presenter/TabBar/Coordinator/TabBarPageType.swift -------------------------------------------------------------------------------- /Trinap/Sources/Presenter/TabBar/Main/Coordinator/MainCoordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Presenter/TabBar/Main/Coordinator/MainCoordinator.swift -------------------------------------------------------------------------------- /Trinap/Sources/Presenter/TabBar/Main/Coordinator/MainDependencyContainer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Presenter/TabBar/Main/Coordinator/MainDependencyContainer.swift -------------------------------------------------------------------------------- /Trinap/Sources/Presenter/TabBar/Main/Coordinator/PhotographerDetailCoordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Presenter/TabBar/Main/Coordinator/PhotographerDetailCoordinator.swift -------------------------------------------------------------------------------- /Trinap/Sources/Presenter/TabBar/Main/Coordinator/PhotographerDetailDependencyContainer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Presenter/TabBar/Main/Coordinator/PhotographerDetailDependencyContainer.swift -------------------------------------------------------------------------------- /Trinap/Sources/Presenter/TabBar/Main/PhotographerDetail/CollectionView/PhotographerProfileCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Presenter/TabBar/Main/PhotographerDetail/CollectionView/PhotographerProfileCell.swift -------------------------------------------------------------------------------- /Trinap/Sources/Presenter/TabBar/Main/PhotographerDetail/PhotographerDetailDataSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Presenter/TabBar/Main/PhotographerDetail/PhotographerDetailDataSource.swift -------------------------------------------------------------------------------- /Trinap/Sources/Presenter/TabBar/Main/PhotographerDetail/PhotographerDetailViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Presenter/TabBar/Main/PhotographerDetail/PhotographerDetailViewController.swift -------------------------------------------------------------------------------- /Trinap/Sources/Presenter/TabBar/Main/PhotographerDetail/PhotographerDetailViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Presenter/TabBar/Main/PhotographerDetail/PhotographerDetailViewModel.swift -------------------------------------------------------------------------------- /Trinap/Sources/Presenter/TabBar/Main/PhotographerList/PhotographerListViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Presenter/TabBar/Main/PhotographerList/PhotographerListViewController.swift -------------------------------------------------------------------------------- /Trinap/Sources/Presenter/TabBar/Main/PhotographerList/PhotographerListViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Presenter/TabBar/Main/PhotographerList/PhotographerListViewModel.swift -------------------------------------------------------------------------------- /Trinap/Sources/Presenter/TabBar/Main/PhotographerList/PhotographerPreviewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Presenter/TabBar/Main/PhotographerList/PhotographerPreviewCell.swift -------------------------------------------------------------------------------- /Trinap/Sources/Presenter/TabBar/Main/SearchBarView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Presenter/TabBar/Main/SearchBarView.swift -------------------------------------------------------------------------------- /Trinap/Sources/Presenter/TabBar/Main/SelectReservationDate/SelectReservationDateViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Presenter/TabBar/Main/SelectReservationDate/SelectReservationDateViewController.swift -------------------------------------------------------------------------------- /Trinap/Sources/Presenter/TabBar/Main/SelectReservationDate/SelectReservationDateViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Presenter/TabBar/Main/SelectReservationDate/SelectReservationDateViewModel.swift -------------------------------------------------------------------------------- /Trinap/Sources/Presenter/TabBar/Main/SelectReservationDate/TimeCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Presenter/TabBar/Main/SelectReservationDate/TimeCell.swift -------------------------------------------------------------------------------- /Trinap/Sources/Presenter/TabBar/Main/SelectReservationDate/TitleSectionHeaderView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Presenter/TabBar/Main/SelectReservationDate/TitleSectionHeaderView.swift -------------------------------------------------------------------------------- /Trinap/Sources/Presenter/TabBar/Main/Sue/SueViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Presenter/TabBar/Main/Sue/SueViewController.swift -------------------------------------------------------------------------------- /Trinap/Sources/Presenter/TabBar/Main/Sue/SueViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Presenter/TabBar/Main/Sue/SueViewModel.swift -------------------------------------------------------------------------------- /Trinap/Sources/Presenter/TabBar/Main/ThumbnailCollectionView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Presenter/TabBar/Main/ThumbnailCollectionView.swift -------------------------------------------------------------------------------- /Trinap/Sources/Presenter/TabBar/Main/ThumbnailCollectionViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Presenter/TabBar/Main/ThumbnailCollectionViewCell.swift -------------------------------------------------------------------------------- /Trinap/Sources/Presenter/TabBar/Main/ThumbnailImageView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Presenter/TabBar/Main/ThumbnailImageView.swift -------------------------------------------------------------------------------- /Trinap/Sources/Presenter/TabBar/Main/TrinapAlert/TrinapAlert.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Presenter/TabBar/Main/TrinapAlert/TrinapAlert.swift -------------------------------------------------------------------------------- /Trinap/Sources/Presenter/TabBar/MyPage/BlockList/BlockListCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Presenter/TabBar/MyPage/BlockList/BlockListCell.swift -------------------------------------------------------------------------------- /Trinap/Sources/Presenter/TabBar/MyPage/BlockList/BlockListViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Presenter/TabBar/MyPage/BlockList/BlockListViewController.swift -------------------------------------------------------------------------------- /Trinap/Sources/Presenter/TabBar/MyPage/BlockList/BlockListViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Presenter/TabBar/MyPage/BlockList/BlockListViewModel.swift -------------------------------------------------------------------------------- /Trinap/Sources/Presenter/TabBar/MyPage/Contact/ContactListViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Presenter/TabBar/MyPage/Contact/ContactListViewController.swift -------------------------------------------------------------------------------- /Trinap/Sources/Presenter/TabBar/MyPage/Contact/ContactListViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Presenter/TabBar/MyPage/Contact/ContactListViewModel.swift -------------------------------------------------------------------------------- /Trinap/Sources/Presenter/TabBar/MyPage/Contact/ContactTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Presenter/TabBar/MyPage/Contact/ContactTableViewCell.swift -------------------------------------------------------------------------------- /Trinap/Sources/Presenter/TabBar/MyPage/Contact/Create/CreateContactViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Presenter/TabBar/MyPage/Contact/Create/CreateContactViewController.swift -------------------------------------------------------------------------------- /Trinap/Sources/Presenter/TabBar/MyPage/Contact/Create/CreateContactViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Presenter/TabBar/MyPage/Contact/Create/CreateContactViewModel.swift -------------------------------------------------------------------------------- /Trinap/Sources/Presenter/TabBar/MyPage/Contact/Detail/DetailContactViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Presenter/TabBar/MyPage/Contact/Detail/DetailContactViewController.swift -------------------------------------------------------------------------------- /Trinap/Sources/Presenter/TabBar/MyPage/Contact/Detail/DetailContactViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Presenter/TabBar/MyPage/Contact/Detail/DetailContactViewModel.swift -------------------------------------------------------------------------------- /Trinap/Sources/Presenter/TabBar/MyPage/Coordinator/MyPageCoordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Presenter/TabBar/MyPage/Coordinator/MyPageCoordinator.swift -------------------------------------------------------------------------------- /Trinap/Sources/Presenter/TabBar/MyPage/Coordinator/MyPageDependencyContainter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Presenter/TabBar/MyPage/Coordinator/MyPageDependencyContainter.swift -------------------------------------------------------------------------------- /Trinap/Sources/Presenter/TabBar/MyPage/DropOut/DropOutViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Presenter/TabBar/MyPage/DropOut/DropOutViewController.swift -------------------------------------------------------------------------------- /Trinap/Sources/Presenter/TabBar/MyPage/DropOut/DropOutViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Presenter/TabBar/MyPage/DropOut/DropOutViewModel.swift -------------------------------------------------------------------------------- /Trinap/Sources/Presenter/TabBar/MyPage/EditProfile/EditProfileViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Presenter/TabBar/MyPage/EditProfile/EditProfileViewController.swift -------------------------------------------------------------------------------- /Trinap/Sources/Presenter/TabBar/MyPage/EditProfile/EditProfileViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Presenter/TabBar/MyPage/EditProfile/EditProfileViewModel.swift -------------------------------------------------------------------------------- /Trinap/Sources/Presenter/TabBar/MyPage/MyPage/MyPageViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Presenter/TabBar/MyPage/MyPage/MyPageViewController.swift -------------------------------------------------------------------------------- /Trinap/Sources/Presenter/TabBar/MyPage/MyPage/MyPageViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Presenter/TabBar/MyPage/MyPage/MyPageViewModel.swift -------------------------------------------------------------------------------- /Trinap/Sources/Presenter/TabBar/MyPage/MyPage/Tableview/MyPageInfoRow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Presenter/TabBar/MyPage/MyPage/Tableview/MyPageInfoRow.swift -------------------------------------------------------------------------------- /Trinap/Sources/Presenter/TabBar/MyPage/MyPage/Tableview/MyPageSectionHeader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Presenter/TabBar/MyPage/MyPage/Tableview/MyPageSectionHeader.swift -------------------------------------------------------------------------------- /Trinap/Sources/Presenter/TabBar/MyPage/MyPage/Tableview/MyPageSwitchRow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Presenter/TabBar/MyPage/MyPage/Tableview/MyPageSwitchRow.swift -------------------------------------------------------------------------------- /Trinap/Sources/Presenter/TabBar/MyPage/MyPage/Tableview/ProfileCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Presenter/TabBar/MyPage/MyPage/Tableview/ProfileCell.swift -------------------------------------------------------------------------------- /Trinap/Sources/Presenter/TabBar/MyPage/OpenSoucreList/OpenSourceCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Presenter/TabBar/MyPage/OpenSoucreList/OpenSourceCell.swift -------------------------------------------------------------------------------- /Trinap/Sources/Presenter/TabBar/MyPage/OpenSoucreList/OpenSourceListViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Presenter/TabBar/MyPage/OpenSoucreList/OpenSourceListViewController.swift -------------------------------------------------------------------------------- /Trinap/Sources/Presenter/TabBar/MyPage/OpenSoucreList/OpenSourceListViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Presenter/TabBar/MyPage/OpenSoucreList/OpenSourceListViewModel.swift -------------------------------------------------------------------------------- /Trinap/Sources/Presenter/TabBar/MyPage/Photographer/ColletionView/EditPhotographerPhotoDeleteHeaderView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Presenter/TabBar/MyPage/Photographer/ColletionView/EditPhotographerPhotoDeleteHeaderView.swift -------------------------------------------------------------------------------- /Trinap/Sources/Presenter/TabBar/MyPage/Photographer/ColletionView/EditPhotographerPhotoHeaderView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Presenter/TabBar/MyPage/Photographer/ColletionView/EditPhotographerPhotoHeaderView.swift -------------------------------------------------------------------------------- /Trinap/Sources/Presenter/TabBar/MyPage/Photographer/ColletionView/EditPhotographerProfileCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Presenter/TabBar/MyPage/Photographer/ColletionView/EditPhotographerProfileCell.swift -------------------------------------------------------------------------------- /Trinap/Sources/Presenter/TabBar/MyPage/Photographer/ColletionView/PhotoCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Presenter/TabBar/MyPage/Photographer/ColletionView/PhotoCell.swift -------------------------------------------------------------------------------- /Trinap/Sources/Presenter/TabBar/MyPage/Photographer/ColletionView/PhotographerDetailCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Presenter/TabBar/MyPage/Photographer/ColletionView/PhotographerDetailCell.swift -------------------------------------------------------------------------------- /Trinap/Sources/Presenter/TabBar/MyPage/Photographer/ColletionView/PhotographerLayout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Presenter/TabBar/MyPage/Photographer/ColletionView/PhotographerLayout.swift -------------------------------------------------------------------------------- /Trinap/Sources/Presenter/TabBar/MyPage/Photographer/ColletionView/PhotographerReivewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Presenter/TabBar/MyPage/Photographer/ColletionView/PhotographerReivewCell.swift -------------------------------------------------------------------------------- /Trinap/Sources/Presenter/TabBar/MyPage/Photographer/ColletionView/PhotographerSummaryReviewcell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Presenter/TabBar/MyPage/Photographer/ColletionView/PhotographerSummaryReviewcell.swift -------------------------------------------------------------------------------- /Trinap/Sources/Presenter/TabBar/MyPage/Photographer/DetailImageViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Presenter/TabBar/MyPage/Photographer/DetailImageViewController.swift -------------------------------------------------------------------------------- /Trinap/Sources/Presenter/TabBar/MyPage/Photographer/EditPhotographerViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Presenter/TabBar/MyPage/Photographer/EditPhotographerViewController.swift -------------------------------------------------------------------------------- /Trinap/Sources/Presenter/TabBar/MyPage/Photographer/EditPhotographerViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Presenter/TabBar/MyPage/Photographer/EditPhotographerViewModel.swift -------------------------------------------------------------------------------- /Trinap/Sources/Presenter/TabBar/MyPage/Photographer/EditPossibleDate/EditPossibleDateViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Presenter/TabBar/MyPage/Photographer/EditPossibleDate/EditPossibleDateViewController.swift -------------------------------------------------------------------------------- /Trinap/Sources/Presenter/TabBar/MyPage/Photographer/EditPossibleDate/EditPossibleDateViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Presenter/TabBar/MyPage/Photographer/EditPossibleDate/EditPossibleDateViewModel.swift -------------------------------------------------------------------------------- /Trinap/Sources/Presenter/TabBar/MyPage/Photographer/PhotographerPlaceholderView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Presenter/TabBar/MyPage/Photographer/PhotographerPlaceholderView.swift -------------------------------------------------------------------------------- /Trinap/Sources/Presenter/TabBar/MyPage/Photographer/Register/RegisterLocationView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Presenter/TabBar/MyPage/Photographer/Register/RegisterLocationView.swift -------------------------------------------------------------------------------- /Trinap/Sources/Presenter/TabBar/MyPage/Photographer/Register/RegisterPhotographerInfoViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Presenter/TabBar/MyPage/Photographer/Register/RegisterPhotographerInfoViewController.swift -------------------------------------------------------------------------------- /Trinap/Sources/Presenter/TabBar/MyPage/Photographer/Register/RegisterPhotographerInfoViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Presenter/TabBar/MyPage/Photographer/Register/RegisterPhotographerInfoViewModel.swift -------------------------------------------------------------------------------- /Trinap/Sources/Presenter/TabBar/MyPage/Photographer/Register/RegisterPriceView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Presenter/TabBar/MyPage/Photographer/Register/RegisterPriceView.swift -------------------------------------------------------------------------------- /Trinap/Sources/Presenter/TabBar/MyPage/Photographer/Register/TagCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Presenter/TabBar/MyPage/Photographer/Register/TagCell.swift -------------------------------------------------------------------------------- /Trinap/Sources/Presenter/TabBar/Reservation/Coordinator/ReservationCoordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Presenter/TabBar/Reservation/Coordinator/ReservationCoordinator.swift -------------------------------------------------------------------------------- /Trinap/Sources/Presenter/TabBar/Reservation/Coordinator/ReservationDependencyContainer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Presenter/TabBar/Reservation/Coordinator/ReservationDependencyContainer.swift -------------------------------------------------------------------------------- /Trinap/Sources/Presenter/TabBar/Reservation/Detail/HandleStatus/ReservationCancelled.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Presenter/TabBar/Reservation/Detail/HandleStatus/ReservationCancelled.swift -------------------------------------------------------------------------------- /Trinap/Sources/Presenter/TabBar/Reservation/Detail/HandleStatus/ReservationConfirmed.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Presenter/TabBar/Reservation/Detail/HandleStatus/ReservationConfirmed.swift -------------------------------------------------------------------------------- /Trinap/Sources/Presenter/TabBar/Reservation/Detail/HandleStatus/ReservationDone.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Presenter/TabBar/Reservation/Detail/HandleStatus/ReservationDone.swift -------------------------------------------------------------------------------- /Trinap/Sources/Presenter/TabBar/Reservation/Detail/HandleStatus/ReservationError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Presenter/TabBar/Reservation/Detail/HandleStatus/ReservationError.swift -------------------------------------------------------------------------------- /Trinap/Sources/Presenter/TabBar/Reservation/Detail/HandleStatus/ReservationRequested.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Presenter/TabBar/Reservation/Detail/HandleStatus/ReservationRequested.swift -------------------------------------------------------------------------------- /Trinap/Sources/Presenter/TabBar/Reservation/Detail/HandleStatus/ReservationStatusConfigurations.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Presenter/TabBar/Reservation/Detail/HandleStatus/ReservationStatusConfigurations.swift -------------------------------------------------------------------------------- /Trinap/Sources/Presenter/TabBar/Reservation/Detail/HandleStatus/ReservationStatusConvertible.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Presenter/TabBar/Reservation/Detail/HandleStatus/ReservationStatusConvertible.swift -------------------------------------------------------------------------------- /Trinap/Sources/Presenter/TabBar/Reservation/Detail/HandleStatus/ReservationUseCaseExecutable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Presenter/TabBar/Reservation/Detail/HandleStatus/ReservationUseCaseExecutable.swift -------------------------------------------------------------------------------- /Trinap/Sources/Presenter/TabBar/Reservation/Detail/ReservationButtonView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Presenter/TabBar/Reservation/Detail/ReservationButtonView.swift -------------------------------------------------------------------------------- /Trinap/Sources/Presenter/TabBar/Reservation/Detail/ReservationDetailViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Presenter/TabBar/Reservation/Detail/ReservationDetailViewController.swift -------------------------------------------------------------------------------- /Trinap/Sources/Presenter/TabBar/Reservation/Detail/ReservationDetailViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Presenter/TabBar/Reservation/Detail/ReservationDetailViewModel.swift -------------------------------------------------------------------------------- /Trinap/Sources/Presenter/TabBar/Reservation/Detail/ReservationUserView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Presenter/TabBar/Reservation/Detail/ReservationUserView.swift -------------------------------------------------------------------------------- /Trinap/Sources/Presenter/TabBar/Reservation/ReservationList/ReservationCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Presenter/TabBar/Reservation/ReservationList/ReservationCell.swift -------------------------------------------------------------------------------- /Trinap/Sources/Presenter/TabBar/Reservation/ReservationList/ReservationFilterView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Presenter/TabBar/Reservation/ReservationList/ReservationFilterView.swift -------------------------------------------------------------------------------- /Trinap/Sources/Presenter/TabBar/Reservation/ReservationList/ReservationPreviewListViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Presenter/TabBar/Reservation/ReservationList/ReservationPreviewListViewController.swift -------------------------------------------------------------------------------- /Trinap/Sources/Presenter/TabBar/Reservation/ReservationList/ReservationPreviewListViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Presenter/TabBar/Reservation/ReservationList/ReservationPreviewListViewModel.swift -------------------------------------------------------------------------------- /Trinap/Sources/Presenter/TabBar/Reservation/Review/CreateReviewViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Presenter/TabBar/Reservation/Review/CreateReviewViewController.swift -------------------------------------------------------------------------------- /Trinap/Sources/Presenter/TabBar/Reservation/Review/CreateReviewViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Presenter/TabBar/Reservation/Review/CreateReviewViewModel.swift -------------------------------------------------------------------------------- /Trinap/Sources/Presenter/TabBar/Reservation/Review/RatingView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Presenter/TabBar/Reservation/Review/RatingView.swift -------------------------------------------------------------------------------- /Trinap/Sources/Presenter/TabBar/Reservation/Review/ReviewList/CustomerReviewListViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Presenter/TabBar/Reservation/Review/ReviewList/CustomerReviewListViewController.swift -------------------------------------------------------------------------------- /Trinap/Sources/Presenter/TabBar/Reservation/Review/ReviewList/CustomerReviewListViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Presenter/TabBar/Reservation/Review/ReviewList/CustomerReviewListViewModel.swift -------------------------------------------------------------------------------- /Trinap/Sources/Presenter/TabBar/Search/SearchViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Presenter/TabBar/Search/SearchViewController.swift -------------------------------------------------------------------------------- /Trinap/Sources/Presenter/TabBar/Search/SearchViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Presenter/TabBar/Search/SearchViewModel.swift -------------------------------------------------------------------------------- /Trinap/Sources/Utils/Array+.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Utils/Array+.swift -------------------------------------------------------------------------------- /Trinap/Sources/Utils/Date+.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Utils/Date+.swift -------------------------------------------------------------------------------- /Trinap/Sources/Utils/Dictionary+.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Utils/Dictionary+.swift -------------------------------------------------------------------------------- /Trinap/Sources/Utils/Encodable+.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Utils/Encodable+.swift -------------------------------------------------------------------------------- /Trinap/Sources/Utils/LocalError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Utils/LocalError.swift -------------------------------------------------------------------------------- /Trinap/Sources/Utils/Logger.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Utils/Logger.swift -------------------------------------------------------------------------------- /Trinap/Sources/Utils/ObservableConvertibleType+Driver.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Utils/ObservableConvertibleType+Driver.swift -------------------------------------------------------------------------------- /Trinap/Sources/Utils/String+.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Utils/String+.swift -------------------------------------------------------------------------------- /Trinap/Sources/Utils/TokenManager/KeychainAccount.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Utils/TokenManager/KeychainAccount.swift -------------------------------------------------------------------------------- /Trinap/Sources/Utils/TokenManager/KeychainTokenManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Utils/TokenManager/KeychainTokenManager.swift -------------------------------------------------------------------------------- /Trinap/Sources/Utils/TokenManager/TokenManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Utils/TokenManager/TokenManager.swift -------------------------------------------------------------------------------- /Trinap/Sources/Utils/TokenManager/TokenManagerError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Utils/TokenManager/TokenManagerError.swift -------------------------------------------------------------------------------- /Trinap/Sources/Utils/URLConstants.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Utils/URLConstants.swift -------------------------------------------------------------------------------- /Trinap/Sources/Utils/UserDefaultKey.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Trinap/Sources/Utils/UserDefaultKey.swift -------------------------------------------------------------------------------- /TrinapTests/Sources/MockTokenManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/TrinapTests/Sources/MockTokenManager.swift -------------------------------------------------------------------------------- /TrinapTests/Sources/RxTest+RecordedEvents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/TrinapTests/Sources/RxTest+RecordedEvents.swift -------------------------------------------------------------------------------- /TrinapTests/Sources/TrinapTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/TrinapTests/Sources/TrinapTests.swift -------------------------------------------------------------------------------- /TrinapTests/Sources/UseCase/Review/FetchReviewUseCaseTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/TrinapTests/Sources/UseCase/Review/FetchReviewUseCaseTests.swift -------------------------------------------------------------------------------- /TrinapTests/Sources/UseCase/Review/MockReviewRepository.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/TrinapTests/Sources/UseCase/Review/MockReviewRepository.swift -------------------------------------------------------------------------------- /TrinapTests/Sources/UseCase/Review/MockUserRepository.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/TrinapTests/Sources/UseCase/Review/MockUserRepository.swift -------------------------------------------------------------------------------- /Tuist/Config.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Tuist/Config.swift -------------------------------------------------------------------------------- /Tuist/Dependencies.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Tuist/Dependencies.swift -------------------------------------------------------------------------------- /Tuist/ProjectDescriptionHelpers/Project+Templates.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/Tuist/ProjectDescriptionHelpers/Project+Templates.swift -------------------------------------------------------------------------------- /Tuist/master.key: -------------------------------------------------------------------------------- 1 | vLZVCrYeFX7HVql0wfCwFZO2vc9WqzHVsi70IjG5p48= 2 | -------------------------------------------------------------------------------- /fastlane/Appfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/fastlane/Appfile -------------------------------------------------------------------------------- /fastlane/Fastfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/fastlane/Fastfile -------------------------------------------------------------------------------- /fastlane/Matchfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/fastlane/Matchfile -------------------------------------------------------------------------------- /fastlane/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS02-Trinap/HEAD/fastlane/README.md --------------------------------------------------------------------------------