├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ └── 아차-이슈.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── Acha ├── .swiftlint.yml ├── Acha.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── swiftpm │ │ │ └── Package.resolved │ └── xcshareddata │ │ └── xcschemes │ │ └── Acha.xcscheme ├── Acha │ ├── Acha.entitlements │ ├── App │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ ├── AppIcon.png │ │ │ │ └── Contents.json │ │ │ ├── Color │ │ │ │ ├── CommentBoxColor.colorset │ │ │ │ │ └── Contents.json │ │ │ │ ├── Contents.json │ │ │ │ ├── GameRoomColor.colorset │ │ │ │ │ └── Contents.json │ │ │ │ ├── PointDarkColor.colorset │ │ │ │ │ └── Contents.json │ │ │ │ └── PointLightColor.colorset │ │ │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ └── Image │ │ │ │ ├── Contents.json │ │ │ │ ├── commentImage.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── bubble 1.png │ │ │ │ ├── crazy.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── crazy.png │ │ │ │ ├── email.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── email.png │ │ │ │ ├── firstAnnotation.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── penguin.png │ │ │ │ ├── fourthAnnotation.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── bunny.png │ │ │ │ ├── invalidate.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── exclamation-mark.png │ │ │ │ ├── map_0.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── map_0.png │ │ │ │ ├── map_1.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── map_1.png │ │ │ │ ├── map_2.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── map_2.png │ │ │ │ ├── map_3.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── map_3.png │ │ │ │ ├── nickname.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── name.png │ │ │ │ ├── noBadge.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── noBadge.png │ │ │ │ ├── password.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── padlock.png │ │ │ │ ├── rank0.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── medal.png │ │ │ │ ├── rank1.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── medal (1).png │ │ │ │ ├── rank2.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── medal (2).png │ │ │ │ ├── secondAnnotation.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── pet.png │ │ │ │ ├── thirdAnnotation.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── cat.png │ │ │ │ └── x.circle.fill.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── x.circle.fill.png │ │ ├── Base.lproj │ │ │ └── LaunchScreen.storyboard │ │ ├── Coordinator │ │ │ ├── AppCoordinator.swift │ │ │ └── Coordinator.swift │ │ ├── GoogleService-Info.plist │ │ ├── Info.plist │ │ └── SceneDelegate.swift │ ├── Data │ │ ├── DTO │ │ │ ├── BadgeDTO.swift │ │ │ ├── ChatDTO.swift │ │ │ ├── CommentDTO.swift │ │ │ ├── CommunityDTO.swift │ │ │ ├── CoordinateDTO.swift │ │ │ ├── InGameUserDataDTO.swift │ │ │ ├── MapDTO.swift │ │ │ ├── MultiGamePlayerDTO.swift │ │ │ ├── PostDTO.swift │ │ │ ├── RecordDTO.swift │ │ │ ├── RoomDTO.swift │ │ │ └── UserDTO.swift │ │ └── Repository │ │ │ ├── DefaultBadgeRepository.swift │ │ │ ├── DefaultCommunityRepository.swift │ │ │ ├── DefaultGameRoomRepository.swift │ │ │ ├── DefaultLocationRepository.swift │ │ │ ├── DefaultMapRepository.swift │ │ │ ├── DefaultRecordRepository.swift │ │ │ ├── DefaultTempRepository.swift │ │ │ ├── DefaultTimeRepository.swift │ │ │ ├── DefaultUserRepository.swift │ │ │ └── Protocol │ │ │ ├── BadgeRepository.swift │ │ │ ├── CommunityRepository.swift │ │ │ ├── GameRoomRepository.swift │ │ │ ├── LocationRepository.swift │ │ │ ├── MapRepository.swift │ │ │ ├── RecordRepository.swift │ │ │ ├── TempRepository.swift │ │ │ ├── TimeRepository.swift │ │ │ └── UserRepository.swift │ ├── Domain │ │ ├── Entity │ │ │ ├── Badge.swift │ │ │ ├── Chat.swift │ │ │ ├── Comment.swift │ │ │ ├── Coordinate.swift │ │ │ ├── HealthKitReadData.swift │ │ │ ├── HealthKitWriteData.swift │ │ │ ├── Image.swift │ │ │ ├── InGameRanking.swift │ │ │ ├── InGameRecord.swift │ │ │ ├── LogInData.swift │ │ │ ├── Map.swift │ │ │ ├── MapRegion.swift │ │ │ ├── MultiGamePlayerData.swift │ │ │ ├── Post.swift │ │ │ ├── Record.swift │ │ │ ├── RecordViewChartData.swift │ │ │ ├── RecordViewDayTotalRecord.swift │ │ │ ├── RecordViewHeaderRecord.swift │ │ │ ├── RoomUser.swift │ │ │ ├── SignUpData.swift │ │ │ └── User.swift │ │ └── UseCase │ │ │ ├── Auth │ │ │ ├── DefatulSignUpUsecase.swift │ │ │ ├── DefaultLoginUsecase.swift │ │ │ └── Protocol │ │ │ │ ├── AuthUseCaseProtocol.swift │ │ │ │ ├── LoginUseCase.swift │ │ │ │ └── SignUpUseCase.swift │ │ │ ├── Community │ │ │ ├── DefaultCommunityDetailUseCase.swift │ │ │ ├── DefaultCommunityMainUseCase.swift │ │ │ ├── DefaultCommunityPostWriteUseCase.swift │ │ │ └── Protocol │ │ │ │ ├── CommunityDetailUseCase.swift │ │ │ │ ├── CommunityMainUseCase.swift │ │ │ │ └── CommunityPostWriteUseCase.swift │ │ │ ├── Game │ │ │ ├── DefaultInGameUseCase.swift │ │ │ ├── DefaultMapBaseUseCase.swift │ │ │ ├── DefaultMultiGameChatUseCase.swift │ │ │ ├── DefaultMultiGameRoomUseCase.swift │ │ │ ├── DefaultMultiGameUseCase.swift │ │ │ ├── DefaultSelectMapUseCase.swift │ │ │ ├── DefaultSingleGameUseCase.swift │ │ │ └── Protocol │ │ │ │ ├── InGameUseCase.swift │ │ │ │ ├── MapBaseUseCase.swift │ │ │ │ ├── MultiGameChatUseCase.swift │ │ │ │ ├── MultiGameRoomUseCase.swift │ │ │ │ ├── MultiGameUseCase.swift │ │ │ │ ├── SelectMapUseCase.swift │ │ │ │ └── SingleGameUseCase.swift │ │ │ ├── Home │ │ │ └── DefaultHomeUseCase.swift │ │ │ ├── MyPage │ │ │ ├── DefaultMyInfoEditUseCase.swift │ │ │ ├── DefaultMyPageUseCase.swift │ │ │ └── Protocol │ │ │ │ ├── MyInfoEditUseCase.swift │ │ │ │ └── MyPageUseCase.swift │ │ │ └── Record │ │ │ ├── DefaultRecordMainViewUseCase.swift │ │ │ ├── DefaultRecordMapViewUseCase.swift │ │ │ └── Protocol │ │ │ ├── RecordMainViewUseCase.swift │ │ │ └── RecordMapViewUseCase.swift │ ├── Presentation │ │ ├── Auth │ │ │ ├── Common │ │ │ │ ├── AuthButton.swift │ │ │ │ ├── AuthInputTextField.swift │ │ │ │ ├── AuthTitleView.swift │ │ │ │ └── ScrollAbleViewController.swift │ │ │ ├── Coordinator │ │ │ │ ├── AuthCoordinator.swift │ │ │ │ ├── LoginCoordinator.swift │ │ │ │ └── SignupCoordinator .swift │ │ │ ├── ViewController │ │ │ │ ├── LoginViewController.swift │ │ │ │ └── SignupViewController.swift │ │ │ └── ViewModel │ │ │ │ ├── LoginViewModel.swift │ │ │ │ └── SignUpViewModel.swift │ │ ├── Base │ │ │ ├── BaseViewModel.swift │ │ │ └── MapBase │ │ │ │ ├── MapBaseViewController.swift │ │ │ │ └── MapBaseViewModel.swift │ │ └── TabBar │ │ │ ├── Community │ │ │ ├── Cell │ │ │ │ ├── CommunityDetailCommentCell.swift │ │ │ │ ├── CommunityDetailCommentHeaderView.swift │ │ │ │ ├── CommunityDetailPostCell.swift │ │ │ │ ├── CommunityIndicatorCell.swift │ │ │ │ └── CommunityMainCell.swift │ │ │ ├── Common │ │ │ │ └── CommentView.swift │ │ │ ├── ViewController │ │ │ │ ├── CommunityDetailViewController.swift │ │ │ │ ├── CommunityMainViewController.swift │ │ │ │ └── CommunityPostWriteViewController.swift │ │ │ └── ViewModel │ │ │ │ ├── CommunityDetailViewModel.swift │ │ │ │ ├── CommunityMainViewModel.swift │ │ │ │ └── CommunityPostWriteViewModel.swift │ │ │ ├── Coordinator │ │ │ ├── CommunityCoordinator.swift │ │ │ ├── HomeCoordinator.swift │ │ │ ├── MultiGameCoordinator.swift │ │ │ ├── MyPageCoordinator.swift │ │ │ ├── RecordCoordinator.swift │ │ │ ├── SingleGameCoordinator.swift │ │ │ └── TabBarCoordinator.swift │ │ │ ├── Home │ │ │ ├── Common │ │ │ │ ├── DistanceAndTimeBar.swift │ │ │ │ └── PaddingLabel.swift │ │ │ ├── HomeView │ │ │ │ ├── ViewController │ │ │ │ │ ├── HomeViewController.swift │ │ │ │ │ ├── MultiGameEnterViewController.swift │ │ │ │ │ └── QRReaderViewController.swift │ │ │ │ └── ViewModel │ │ │ │ │ └── HomeViewModel.swift │ │ │ ├── InGameMenus │ │ │ │ ├── View │ │ │ │ │ └── InGameMenuCell.swift │ │ │ │ ├── ViewController │ │ │ │ │ ├── InGamePlayMenuViewController.swift │ │ │ │ │ ├── InGameRankingViewController.swift │ │ │ │ │ └── InGameRecordViewController.swift │ │ │ │ └── ViewModel │ │ │ │ │ ├── InGameRankingViewModel.swift │ │ │ │ │ └── InGameRecordViewModel.swift │ │ │ ├── MultiGame │ │ │ │ ├── View │ │ │ │ │ ├── ChatCell.swift │ │ │ │ │ ├── GameRankCell.swift │ │ │ │ │ ├── GameRoomCell.swift │ │ │ │ │ ├── GameRoomHeader.swift │ │ │ │ │ ├── PlayerAnnotation.swift │ │ │ │ │ ├── PlayerAnnotationView.swift │ │ │ │ │ └── PlayerCircle.swift │ │ │ │ ├── ViewController │ │ │ │ │ ├── MultiGameChatViewController.swift │ │ │ │ │ ├── MultiGameRoomViewController.swift │ │ │ │ │ └── MultiGameViewController.swift │ │ │ │ └── ViewModel │ │ │ │ │ ├── MultiGameChatViewModel.swift │ │ │ │ │ ├── MultiGameRoomViewModel.swift │ │ │ │ │ └── MultiGameViewModel.swift │ │ │ ├── SelectMap │ │ │ │ ├── View │ │ │ │ │ ├── SelectMapRankingHeaderView.swift │ │ │ │ │ └── SelectMapRecordCell.swift │ │ │ │ ├── ViewController │ │ │ │ │ └── SelectMapViewController.swift │ │ │ │ └── ViewModel │ │ │ │ │ └── SelectMapViewModel.swift │ │ │ └── SingleGame │ │ │ │ ├── View │ │ │ │ └── GameOverView.swift │ │ │ │ ├── ViewController │ │ │ │ └── SingleGameViewController.swift │ │ │ │ └── ViewModel │ │ │ │ └── SingleGameViewModel.swift │ │ │ ├── MyPage │ │ │ ├── View │ │ │ │ ├── BadgeCell.swift │ │ │ │ ├── InfoTextFieldView.swift │ │ │ │ ├── MyPageHeaderView.swift │ │ │ │ └── SettingCell.swift │ │ │ ├── ViewController │ │ │ │ ├── BadgeViewController.swift │ │ │ │ ├── CharacterSelectViewController.swift │ │ │ │ ├── MyInfoEditViewController.swift │ │ │ │ └── MyPageViewController.swift │ │ │ └── ViewModel │ │ │ │ ├── BadgeViewModel.swift │ │ │ │ ├── CharacterSelectViewModel.swift │ │ │ │ ├── MyInfoEditViewModel.swift │ │ │ │ └── MyPageViewModel.swift │ │ │ └── Record │ │ │ ├── View │ │ │ ├── LineGraphView.swift │ │ │ ├── RecordMainCell.swift │ │ │ ├── RecordMainChartCell.swift │ │ │ ├── RecordMainHeaderView.swift │ │ │ ├── RecordMapCategoryCell.swift │ │ │ ├── RecordMapHeaderView.swift │ │ │ ├── RecordMapImageCell.swift │ │ │ └── RecordMapRankingCell.swift │ │ │ ├── ViewController │ │ │ ├── RecordMainViewController.swift │ │ │ ├── RecordMapViewController.swift │ │ │ └── RecordPageViewController.swift │ │ │ └── ViewModel │ │ │ ├── RecordMainViewModel.swift │ │ │ └── RecordMapViewModel.swift │ └── Util │ │ ├── Dependency │ │ ├── DIContainer.swift │ │ ├── DependenciesContainer.swift │ │ ├── DependenciesDefinition.swift │ │ └── DependencyKey.swift │ │ ├── Enums │ │ ├── AnimationKeyPath.swift │ │ ├── Errors.swift │ │ ├── FirebaseRealtimeType.swift │ │ ├── FirebaseStorageType.swift │ │ ├── Locations.swift │ │ ├── PinCharacter.swift │ │ ├── SystemImageNameSpace.swift │ │ └── TabBarType.swift │ │ ├── Error │ │ └── FirebaseServiceError.swift │ │ ├── Extension │ │ ├── CALayer+.swift │ │ ├── CLLocationCoordinate2D+.swift │ │ ├── Collection+.swift │ │ ├── Date+.swift │ │ ├── Double+.swift │ │ ├── Encodable+.swift │ │ ├── Int+.swift │ │ ├── MKCircle+.swift │ │ ├── Reactive+ │ │ │ ├── MKMapView+Rx.swift │ │ │ ├── UIApplication+Rx.swift │ │ │ ├── UIView+Rx.swift │ │ │ └── UIViewCotnroller+Rx.swift │ │ ├── String+.swift │ │ ├── UIButton+.swift │ │ ├── UIColor+.swift │ │ ├── UIFont+.swift │ │ ├── UIImage+.swift │ │ ├── UITextField+.swift │ │ └── UIViewController+.swift │ │ ├── Manager │ │ ├── AchaKeyboardManager.swift │ │ └── KeyChainManager.swift │ │ ├── Map │ │ └── MapAnnotation.swift │ │ └── Service │ │ ├── DefaultAuthService.swift │ │ ├── DefaultFirebaseStorageNetworkService.swift │ │ ├── DefaultHealthKitService.swift │ │ ├── DefaultImageCacheService.swift │ │ ├── DefaultKeychainService.swift │ │ ├── DefaultLocationService.swift │ │ ├── DefaultRandomService.swift │ │ ├── DefaultRealtimeDatabaseNetworkService.swift │ │ ├── DefaultTimerService.swift │ │ └── Protocol │ │ ├── AuthService.swift │ │ ├── FirebaseStorageNetworkService.swift │ │ ├── HealthKitService.swift │ │ ├── ImageCacheService.swift │ │ ├── KeychainService.swift │ │ ├── LocationService.swift │ │ ├── RandomService.swift │ │ ├── RealtimeDatabaseNetworkService.swift │ │ └── TimerService.swift ├── AchaTests │ └── AchaTests.swift ├── AchaUITests │ ├── AchaUITests.swift │ └── AchaUITestsLaunchTests.swift └── GPX │ ├── WorkSpace by 25km:h.gpx │ ├── WorkSpace by 6km:h.gpx │ ├── 국민대 12KMH.gpx │ ├── 국민대 30KMH.gpx │ ├── 부원여중 12KMH.gpx │ ├── 부원여중 5MPH.gpx │ ├── 부평동초등학교 20MPH.gpx │ ├── 부평동초등학교 4.2MPH.gpx │ ├── 부평동초등학교 4MPH.gpx │ └── 부평동초등학교 5MPH.gpx ├── AchaLibrary ├── .gitignore ├── .swiftpm │ └── xcode │ │ ├── package.xcworkspace │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ │ └── xcshareddata │ │ └── xcschemes │ │ └── AchaLibrary.xcscheme ├── Package.resolved ├── Package.swift ├── README.md ├── Sources │ └── AchaLibrary │ │ └── AchaLibrary.swift └── Tests │ └── AchaLibraryTests │ └── AchaLibraryTests.swift └── README.md /.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj binary merge=union 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/아차-이슈.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/.github/ISSUE_TEMPLATE/아차-이슈.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/.gitignore -------------------------------------------------------------------------------- /Acha/.swiftlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/.swiftlint.yml -------------------------------------------------------------------------------- /Acha/Acha.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Acha/Acha.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Acha/Acha.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Acha/Acha.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved -------------------------------------------------------------------------------- /Acha/Acha.xcodeproj/xcshareddata/xcschemes/Acha.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha.xcodeproj/xcshareddata/xcschemes/Acha.xcscheme -------------------------------------------------------------------------------- /Acha/Acha/Acha.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Acha.entitlements -------------------------------------------------------------------------------- /Acha/Acha/App/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/App/AppDelegate.swift -------------------------------------------------------------------------------- /Acha/Acha/App/Assets.xcassets/AppIcon.appiconset/AppIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/App/Assets.xcassets/AppIcon.appiconset/AppIcon.png -------------------------------------------------------------------------------- /Acha/Acha/App/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/App/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Acha/Acha/App/Assets.xcassets/Color/CommentBoxColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/App/Assets.xcassets/Color/CommentBoxColor.colorset/Contents.json -------------------------------------------------------------------------------- /Acha/Acha/App/Assets.xcassets/Color/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/App/Assets.xcassets/Color/Contents.json -------------------------------------------------------------------------------- /Acha/Acha/App/Assets.xcassets/Color/GameRoomColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/App/Assets.xcassets/Color/GameRoomColor.colorset/Contents.json -------------------------------------------------------------------------------- /Acha/Acha/App/Assets.xcassets/Color/PointDarkColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/App/Assets.xcassets/Color/PointDarkColor.colorset/Contents.json -------------------------------------------------------------------------------- /Acha/Acha/App/Assets.xcassets/Color/PointLightColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/App/Assets.xcassets/Color/PointLightColor.colorset/Contents.json -------------------------------------------------------------------------------- /Acha/Acha/App/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/App/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Acha/Acha/App/Assets.xcassets/Image/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/App/Assets.xcassets/Image/Contents.json -------------------------------------------------------------------------------- /Acha/Acha/App/Assets.xcassets/Image/commentImage.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/App/Assets.xcassets/Image/commentImage.imageset/Contents.json -------------------------------------------------------------------------------- /Acha/Acha/App/Assets.xcassets/Image/commentImage.imageset/bubble 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/App/Assets.xcassets/Image/commentImage.imageset/bubble 1.png -------------------------------------------------------------------------------- /Acha/Acha/App/Assets.xcassets/Image/crazy.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/App/Assets.xcassets/Image/crazy.imageset/Contents.json -------------------------------------------------------------------------------- /Acha/Acha/App/Assets.xcassets/Image/crazy.imageset/crazy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/App/Assets.xcassets/Image/crazy.imageset/crazy.png -------------------------------------------------------------------------------- /Acha/Acha/App/Assets.xcassets/Image/email.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/App/Assets.xcassets/Image/email.imageset/Contents.json -------------------------------------------------------------------------------- /Acha/Acha/App/Assets.xcassets/Image/email.imageset/email.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/App/Assets.xcassets/Image/email.imageset/email.png -------------------------------------------------------------------------------- /Acha/Acha/App/Assets.xcassets/Image/firstAnnotation.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/App/Assets.xcassets/Image/firstAnnotation.imageset/Contents.json -------------------------------------------------------------------------------- /Acha/Acha/App/Assets.xcassets/Image/firstAnnotation.imageset/penguin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/App/Assets.xcassets/Image/firstAnnotation.imageset/penguin.png -------------------------------------------------------------------------------- /Acha/Acha/App/Assets.xcassets/Image/fourthAnnotation.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/App/Assets.xcassets/Image/fourthAnnotation.imageset/Contents.json -------------------------------------------------------------------------------- /Acha/Acha/App/Assets.xcassets/Image/fourthAnnotation.imageset/bunny.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/App/Assets.xcassets/Image/fourthAnnotation.imageset/bunny.png -------------------------------------------------------------------------------- /Acha/Acha/App/Assets.xcassets/Image/invalidate.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/App/Assets.xcassets/Image/invalidate.imageset/Contents.json -------------------------------------------------------------------------------- /Acha/Acha/App/Assets.xcassets/Image/invalidate.imageset/exclamation-mark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/App/Assets.xcassets/Image/invalidate.imageset/exclamation-mark.png -------------------------------------------------------------------------------- /Acha/Acha/App/Assets.xcassets/Image/map_0.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/App/Assets.xcassets/Image/map_0.imageset/Contents.json -------------------------------------------------------------------------------- /Acha/Acha/App/Assets.xcassets/Image/map_0.imageset/map_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/App/Assets.xcassets/Image/map_0.imageset/map_0.png -------------------------------------------------------------------------------- /Acha/Acha/App/Assets.xcassets/Image/map_1.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/App/Assets.xcassets/Image/map_1.imageset/Contents.json -------------------------------------------------------------------------------- /Acha/Acha/App/Assets.xcassets/Image/map_1.imageset/map_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/App/Assets.xcassets/Image/map_1.imageset/map_1.png -------------------------------------------------------------------------------- /Acha/Acha/App/Assets.xcassets/Image/map_2.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/App/Assets.xcassets/Image/map_2.imageset/Contents.json -------------------------------------------------------------------------------- /Acha/Acha/App/Assets.xcassets/Image/map_2.imageset/map_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/App/Assets.xcassets/Image/map_2.imageset/map_2.png -------------------------------------------------------------------------------- /Acha/Acha/App/Assets.xcassets/Image/map_3.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/App/Assets.xcassets/Image/map_3.imageset/Contents.json -------------------------------------------------------------------------------- /Acha/Acha/App/Assets.xcassets/Image/map_3.imageset/map_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/App/Assets.xcassets/Image/map_3.imageset/map_3.png -------------------------------------------------------------------------------- /Acha/Acha/App/Assets.xcassets/Image/nickname.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/App/Assets.xcassets/Image/nickname.imageset/Contents.json -------------------------------------------------------------------------------- /Acha/Acha/App/Assets.xcassets/Image/nickname.imageset/name.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/App/Assets.xcassets/Image/nickname.imageset/name.png -------------------------------------------------------------------------------- /Acha/Acha/App/Assets.xcassets/Image/noBadge.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/App/Assets.xcassets/Image/noBadge.imageset/Contents.json -------------------------------------------------------------------------------- /Acha/Acha/App/Assets.xcassets/Image/noBadge.imageset/noBadge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/App/Assets.xcassets/Image/noBadge.imageset/noBadge.png -------------------------------------------------------------------------------- /Acha/Acha/App/Assets.xcassets/Image/password.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/App/Assets.xcassets/Image/password.imageset/Contents.json -------------------------------------------------------------------------------- /Acha/Acha/App/Assets.xcassets/Image/password.imageset/padlock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/App/Assets.xcassets/Image/password.imageset/padlock.png -------------------------------------------------------------------------------- /Acha/Acha/App/Assets.xcassets/Image/rank0.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/App/Assets.xcassets/Image/rank0.imageset/Contents.json -------------------------------------------------------------------------------- /Acha/Acha/App/Assets.xcassets/Image/rank0.imageset/medal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/App/Assets.xcassets/Image/rank0.imageset/medal.png -------------------------------------------------------------------------------- /Acha/Acha/App/Assets.xcassets/Image/rank1.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/App/Assets.xcassets/Image/rank1.imageset/Contents.json -------------------------------------------------------------------------------- /Acha/Acha/App/Assets.xcassets/Image/rank1.imageset/medal (1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/App/Assets.xcassets/Image/rank1.imageset/medal (1).png -------------------------------------------------------------------------------- /Acha/Acha/App/Assets.xcassets/Image/rank2.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/App/Assets.xcassets/Image/rank2.imageset/Contents.json -------------------------------------------------------------------------------- /Acha/Acha/App/Assets.xcassets/Image/rank2.imageset/medal (2).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/App/Assets.xcassets/Image/rank2.imageset/medal (2).png -------------------------------------------------------------------------------- /Acha/Acha/App/Assets.xcassets/Image/secondAnnotation.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/App/Assets.xcassets/Image/secondAnnotation.imageset/Contents.json -------------------------------------------------------------------------------- /Acha/Acha/App/Assets.xcassets/Image/secondAnnotation.imageset/pet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/App/Assets.xcassets/Image/secondAnnotation.imageset/pet.png -------------------------------------------------------------------------------- /Acha/Acha/App/Assets.xcassets/Image/thirdAnnotation.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/App/Assets.xcassets/Image/thirdAnnotation.imageset/Contents.json -------------------------------------------------------------------------------- /Acha/Acha/App/Assets.xcassets/Image/thirdAnnotation.imageset/cat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/App/Assets.xcassets/Image/thirdAnnotation.imageset/cat.png -------------------------------------------------------------------------------- /Acha/Acha/App/Assets.xcassets/Image/x.circle.fill.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/App/Assets.xcassets/Image/x.circle.fill.imageset/Contents.json -------------------------------------------------------------------------------- /Acha/Acha/App/Assets.xcassets/Image/x.circle.fill.imageset/x.circle.fill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/App/Assets.xcassets/Image/x.circle.fill.imageset/x.circle.fill.png -------------------------------------------------------------------------------- /Acha/Acha/App/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/App/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Acha/Acha/App/Coordinator/AppCoordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/App/Coordinator/AppCoordinator.swift -------------------------------------------------------------------------------- /Acha/Acha/App/Coordinator/Coordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/App/Coordinator/Coordinator.swift -------------------------------------------------------------------------------- /Acha/Acha/App/GoogleService-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/App/GoogleService-Info.plist -------------------------------------------------------------------------------- /Acha/Acha/App/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/App/Info.plist -------------------------------------------------------------------------------- /Acha/Acha/App/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/App/SceneDelegate.swift -------------------------------------------------------------------------------- /Acha/Acha/Data/DTO/BadgeDTO.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Data/DTO/BadgeDTO.swift -------------------------------------------------------------------------------- /Acha/Acha/Data/DTO/ChatDTO.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Data/DTO/ChatDTO.swift -------------------------------------------------------------------------------- /Acha/Acha/Data/DTO/CommentDTO.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Data/DTO/CommentDTO.swift -------------------------------------------------------------------------------- /Acha/Acha/Data/DTO/CommunityDTO.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Data/DTO/CommunityDTO.swift -------------------------------------------------------------------------------- /Acha/Acha/Data/DTO/CoordinateDTO.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Data/DTO/CoordinateDTO.swift -------------------------------------------------------------------------------- /Acha/Acha/Data/DTO/InGameUserDataDTO.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Data/DTO/InGameUserDataDTO.swift -------------------------------------------------------------------------------- /Acha/Acha/Data/DTO/MapDTO.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Data/DTO/MapDTO.swift -------------------------------------------------------------------------------- /Acha/Acha/Data/DTO/MultiGamePlayerDTO.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Data/DTO/MultiGamePlayerDTO.swift -------------------------------------------------------------------------------- /Acha/Acha/Data/DTO/PostDTO.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Data/DTO/PostDTO.swift -------------------------------------------------------------------------------- /Acha/Acha/Data/DTO/RecordDTO.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Data/DTO/RecordDTO.swift -------------------------------------------------------------------------------- /Acha/Acha/Data/DTO/RoomDTO.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Data/DTO/RoomDTO.swift -------------------------------------------------------------------------------- /Acha/Acha/Data/DTO/UserDTO.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Data/DTO/UserDTO.swift -------------------------------------------------------------------------------- /Acha/Acha/Data/Repository/DefaultBadgeRepository.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Data/Repository/DefaultBadgeRepository.swift -------------------------------------------------------------------------------- /Acha/Acha/Data/Repository/DefaultCommunityRepository.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Data/Repository/DefaultCommunityRepository.swift -------------------------------------------------------------------------------- /Acha/Acha/Data/Repository/DefaultGameRoomRepository.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Data/Repository/DefaultGameRoomRepository.swift -------------------------------------------------------------------------------- /Acha/Acha/Data/Repository/DefaultLocationRepository.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Data/Repository/DefaultLocationRepository.swift -------------------------------------------------------------------------------- /Acha/Acha/Data/Repository/DefaultMapRepository.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Data/Repository/DefaultMapRepository.swift -------------------------------------------------------------------------------- /Acha/Acha/Data/Repository/DefaultRecordRepository.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Data/Repository/DefaultRecordRepository.swift -------------------------------------------------------------------------------- /Acha/Acha/Data/Repository/DefaultTempRepository.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Data/Repository/DefaultTempRepository.swift -------------------------------------------------------------------------------- /Acha/Acha/Data/Repository/DefaultTimeRepository.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Data/Repository/DefaultTimeRepository.swift -------------------------------------------------------------------------------- /Acha/Acha/Data/Repository/DefaultUserRepository.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Data/Repository/DefaultUserRepository.swift -------------------------------------------------------------------------------- /Acha/Acha/Data/Repository/Protocol/BadgeRepository.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Data/Repository/Protocol/BadgeRepository.swift -------------------------------------------------------------------------------- /Acha/Acha/Data/Repository/Protocol/CommunityRepository.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Data/Repository/Protocol/CommunityRepository.swift -------------------------------------------------------------------------------- /Acha/Acha/Data/Repository/Protocol/GameRoomRepository.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Data/Repository/Protocol/GameRoomRepository.swift -------------------------------------------------------------------------------- /Acha/Acha/Data/Repository/Protocol/LocationRepository.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Data/Repository/Protocol/LocationRepository.swift -------------------------------------------------------------------------------- /Acha/Acha/Data/Repository/Protocol/MapRepository.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Data/Repository/Protocol/MapRepository.swift -------------------------------------------------------------------------------- /Acha/Acha/Data/Repository/Protocol/RecordRepository.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Data/Repository/Protocol/RecordRepository.swift -------------------------------------------------------------------------------- /Acha/Acha/Data/Repository/Protocol/TempRepository.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Data/Repository/Protocol/TempRepository.swift -------------------------------------------------------------------------------- /Acha/Acha/Data/Repository/Protocol/TimeRepository.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Data/Repository/Protocol/TimeRepository.swift -------------------------------------------------------------------------------- /Acha/Acha/Data/Repository/Protocol/UserRepository.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Data/Repository/Protocol/UserRepository.swift -------------------------------------------------------------------------------- /Acha/Acha/Domain/Entity/Badge.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Domain/Entity/Badge.swift -------------------------------------------------------------------------------- /Acha/Acha/Domain/Entity/Chat.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Domain/Entity/Chat.swift -------------------------------------------------------------------------------- /Acha/Acha/Domain/Entity/Comment.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Domain/Entity/Comment.swift -------------------------------------------------------------------------------- /Acha/Acha/Domain/Entity/Coordinate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Domain/Entity/Coordinate.swift -------------------------------------------------------------------------------- /Acha/Acha/Domain/Entity/HealthKitReadData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Domain/Entity/HealthKitReadData.swift -------------------------------------------------------------------------------- /Acha/Acha/Domain/Entity/HealthKitWriteData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Domain/Entity/HealthKitWriteData.swift -------------------------------------------------------------------------------- /Acha/Acha/Domain/Entity/Image.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Domain/Entity/Image.swift -------------------------------------------------------------------------------- /Acha/Acha/Domain/Entity/InGameRanking.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Domain/Entity/InGameRanking.swift -------------------------------------------------------------------------------- /Acha/Acha/Domain/Entity/InGameRecord.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Domain/Entity/InGameRecord.swift -------------------------------------------------------------------------------- /Acha/Acha/Domain/Entity/LogInData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Domain/Entity/LogInData.swift -------------------------------------------------------------------------------- /Acha/Acha/Domain/Entity/Map.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Domain/Entity/Map.swift -------------------------------------------------------------------------------- /Acha/Acha/Domain/Entity/MapRegion.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Domain/Entity/MapRegion.swift -------------------------------------------------------------------------------- /Acha/Acha/Domain/Entity/MultiGamePlayerData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Domain/Entity/MultiGamePlayerData.swift -------------------------------------------------------------------------------- /Acha/Acha/Domain/Entity/Post.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Domain/Entity/Post.swift -------------------------------------------------------------------------------- /Acha/Acha/Domain/Entity/Record.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Domain/Entity/Record.swift -------------------------------------------------------------------------------- /Acha/Acha/Domain/Entity/RecordViewChartData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Domain/Entity/RecordViewChartData.swift -------------------------------------------------------------------------------- /Acha/Acha/Domain/Entity/RecordViewDayTotalRecord.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Domain/Entity/RecordViewDayTotalRecord.swift -------------------------------------------------------------------------------- /Acha/Acha/Domain/Entity/RecordViewHeaderRecord.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Domain/Entity/RecordViewHeaderRecord.swift -------------------------------------------------------------------------------- /Acha/Acha/Domain/Entity/RoomUser.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Domain/Entity/RoomUser.swift -------------------------------------------------------------------------------- /Acha/Acha/Domain/Entity/SignUpData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Domain/Entity/SignUpData.swift -------------------------------------------------------------------------------- /Acha/Acha/Domain/Entity/User.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Domain/Entity/User.swift -------------------------------------------------------------------------------- /Acha/Acha/Domain/UseCase/Auth/DefatulSignUpUsecase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Domain/UseCase/Auth/DefatulSignUpUsecase.swift -------------------------------------------------------------------------------- /Acha/Acha/Domain/UseCase/Auth/DefaultLoginUsecase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Domain/UseCase/Auth/DefaultLoginUsecase.swift -------------------------------------------------------------------------------- /Acha/Acha/Domain/UseCase/Auth/Protocol/AuthUseCaseProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Domain/UseCase/Auth/Protocol/AuthUseCaseProtocol.swift -------------------------------------------------------------------------------- /Acha/Acha/Domain/UseCase/Auth/Protocol/LoginUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Domain/UseCase/Auth/Protocol/LoginUseCase.swift -------------------------------------------------------------------------------- /Acha/Acha/Domain/UseCase/Auth/Protocol/SignUpUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Domain/UseCase/Auth/Protocol/SignUpUseCase.swift -------------------------------------------------------------------------------- /Acha/Acha/Domain/UseCase/Community/DefaultCommunityDetailUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Domain/UseCase/Community/DefaultCommunityDetailUseCase.swift -------------------------------------------------------------------------------- /Acha/Acha/Domain/UseCase/Community/DefaultCommunityMainUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Domain/UseCase/Community/DefaultCommunityMainUseCase.swift -------------------------------------------------------------------------------- /Acha/Acha/Domain/UseCase/Community/DefaultCommunityPostWriteUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Domain/UseCase/Community/DefaultCommunityPostWriteUseCase.swift -------------------------------------------------------------------------------- /Acha/Acha/Domain/UseCase/Community/Protocol/CommunityDetailUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Domain/UseCase/Community/Protocol/CommunityDetailUseCase.swift -------------------------------------------------------------------------------- /Acha/Acha/Domain/UseCase/Community/Protocol/CommunityMainUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Domain/UseCase/Community/Protocol/CommunityMainUseCase.swift -------------------------------------------------------------------------------- /Acha/Acha/Domain/UseCase/Community/Protocol/CommunityPostWriteUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Domain/UseCase/Community/Protocol/CommunityPostWriteUseCase.swift -------------------------------------------------------------------------------- /Acha/Acha/Domain/UseCase/Game/DefaultInGameUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Domain/UseCase/Game/DefaultInGameUseCase.swift -------------------------------------------------------------------------------- /Acha/Acha/Domain/UseCase/Game/DefaultMapBaseUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Domain/UseCase/Game/DefaultMapBaseUseCase.swift -------------------------------------------------------------------------------- /Acha/Acha/Domain/UseCase/Game/DefaultMultiGameChatUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Domain/UseCase/Game/DefaultMultiGameChatUseCase.swift -------------------------------------------------------------------------------- /Acha/Acha/Domain/UseCase/Game/DefaultMultiGameRoomUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Domain/UseCase/Game/DefaultMultiGameRoomUseCase.swift -------------------------------------------------------------------------------- /Acha/Acha/Domain/UseCase/Game/DefaultMultiGameUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Domain/UseCase/Game/DefaultMultiGameUseCase.swift -------------------------------------------------------------------------------- /Acha/Acha/Domain/UseCase/Game/DefaultSelectMapUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Domain/UseCase/Game/DefaultSelectMapUseCase.swift -------------------------------------------------------------------------------- /Acha/Acha/Domain/UseCase/Game/DefaultSingleGameUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Domain/UseCase/Game/DefaultSingleGameUseCase.swift -------------------------------------------------------------------------------- /Acha/Acha/Domain/UseCase/Game/Protocol/InGameUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Domain/UseCase/Game/Protocol/InGameUseCase.swift -------------------------------------------------------------------------------- /Acha/Acha/Domain/UseCase/Game/Protocol/MapBaseUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Domain/UseCase/Game/Protocol/MapBaseUseCase.swift -------------------------------------------------------------------------------- /Acha/Acha/Domain/UseCase/Game/Protocol/MultiGameChatUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Domain/UseCase/Game/Protocol/MultiGameChatUseCase.swift -------------------------------------------------------------------------------- /Acha/Acha/Domain/UseCase/Game/Protocol/MultiGameRoomUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Domain/UseCase/Game/Protocol/MultiGameRoomUseCase.swift -------------------------------------------------------------------------------- /Acha/Acha/Domain/UseCase/Game/Protocol/MultiGameUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Domain/UseCase/Game/Protocol/MultiGameUseCase.swift -------------------------------------------------------------------------------- /Acha/Acha/Domain/UseCase/Game/Protocol/SelectMapUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Domain/UseCase/Game/Protocol/SelectMapUseCase.swift -------------------------------------------------------------------------------- /Acha/Acha/Domain/UseCase/Game/Protocol/SingleGameUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Domain/UseCase/Game/Protocol/SingleGameUseCase.swift -------------------------------------------------------------------------------- /Acha/Acha/Domain/UseCase/Home/DefaultHomeUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Domain/UseCase/Home/DefaultHomeUseCase.swift -------------------------------------------------------------------------------- /Acha/Acha/Domain/UseCase/MyPage/DefaultMyInfoEditUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Domain/UseCase/MyPage/DefaultMyInfoEditUseCase.swift -------------------------------------------------------------------------------- /Acha/Acha/Domain/UseCase/MyPage/DefaultMyPageUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Domain/UseCase/MyPage/DefaultMyPageUseCase.swift -------------------------------------------------------------------------------- /Acha/Acha/Domain/UseCase/MyPage/Protocol/MyInfoEditUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Domain/UseCase/MyPage/Protocol/MyInfoEditUseCase.swift -------------------------------------------------------------------------------- /Acha/Acha/Domain/UseCase/MyPage/Protocol/MyPageUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Domain/UseCase/MyPage/Protocol/MyPageUseCase.swift -------------------------------------------------------------------------------- /Acha/Acha/Domain/UseCase/Record/DefaultRecordMainViewUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Domain/UseCase/Record/DefaultRecordMainViewUseCase.swift -------------------------------------------------------------------------------- /Acha/Acha/Domain/UseCase/Record/DefaultRecordMapViewUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Domain/UseCase/Record/DefaultRecordMapViewUseCase.swift -------------------------------------------------------------------------------- /Acha/Acha/Domain/UseCase/Record/Protocol/RecordMainViewUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Domain/UseCase/Record/Protocol/RecordMainViewUseCase.swift -------------------------------------------------------------------------------- /Acha/Acha/Domain/UseCase/Record/Protocol/RecordMapViewUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Domain/UseCase/Record/Protocol/RecordMapViewUseCase.swift -------------------------------------------------------------------------------- /Acha/Acha/Presentation/Auth/Common/AuthButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Presentation/Auth/Common/AuthButton.swift -------------------------------------------------------------------------------- /Acha/Acha/Presentation/Auth/Common/AuthInputTextField.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Presentation/Auth/Common/AuthInputTextField.swift -------------------------------------------------------------------------------- /Acha/Acha/Presentation/Auth/Common/AuthTitleView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Presentation/Auth/Common/AuthTitleView.swift -------------------------------------------------------------------------------- /Acha/Acha/Presentation/Auth/Common/ScrollAbleViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Presentation/Auth/Common/ScrollAbleViewController.swift -------------------------------------------------------------------------------- /Acha/Acha/Presentation/Auth/Coordinator/AuthCoordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Presentation/Auth/Coordinator/AuthCoordinator.swift -------------------------------------------------------------------------------- /Acha/Acha/Presentation/Auth/Coordinator/LoginCoordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Presentation/Auth/Coordinator/LoginCoordinator.swift -------------------------------------------------------------------------------- /Acha/Acha/Presentation/Auth/Coordinator/SignupCoordinator .swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Presentation/Auth/Coordinator/SignupCoordinator .swift -------------------------------------------------------------------------------- /Acha/Acha/Presentation/Auth/ViewController/LoginViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Presentation/Auth/ViewController/LoginViewController.swift -------------------------------------------------------------------------------- /Acha/Acha/Presentation/Auth/ViewController/SignupViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Presentation/Auth/ViewController/SignupViewController.swift -------------------------------------------------------------------------------- /Acha/Acha/Presentation/Auth/ViewModel/LoginViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Presentation/Auth/ViewModel/LoginViewModel.swift -------------------------------------------------------------------------------- /Acha/Acha/Presentation/Auth/ViewModel/SignUpViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Presentation/Auth/ViewModel/SignUpViewModel.swift -------------------------------------------------------------------------------- /Acha/Acha/Presentation/Base/BaseViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Presentation/Base/BaseViewModel.swift -------------------------------------------------------------------------------- /Acha/Acha/Presentation/Base/MapBase/MapBaseViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Presentation/Base/MapBase/MapBaseViewController.swift -------------------------------------------------------------------------------- /Acha/Acha/Presentation/Base/MapBase/MapBaseViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Presentation/Base/MapBase/MapBaseViewModel.swift -------------------------------------------------------------------------------- /Acha/Acha/Presentation/TabBar/Community/Cell/CommunityDetailCommentCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Presentation/TabBar/Community/Cell/CommunityDetailCommentCell.swift -------------------------------------------------------------------------------- /Acha/Acha/Presentation/TabBar/Community/Cell/CommunityDetailCommentHeaderView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Presentation/TabBar/Community/Cell/CommunityDetailCommentHeaderView.swift -------------------------------------------------------------------------------- /Acha/Acha/Presentation/TabBar/Community/Cell/CommunityDetailPostCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Presentation/TabBar/Community/Cell/CommunityDetailPostCell.swift -------------------------------------------------------------------------------- /Acha/Acha/Presentation/TabBar/Community/Cell/CommunityIndicatorCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Presentation/TabBar/Community/Cell/CommunityIndicatorCell.swift -------------------------------------------------------------------------------- /Acha/Acha/Presentation/TabBar/Community/Cell/CommunityMainCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Presentation/TabBar/Community/Cell/CommunityMainCell.swift -------------------------------------------------------------------------------- /Acha/Acha/Presentation/TabBar/Community/Common/CommentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Presentation/TabBar/Community/Common/CommentView.swift -------------------------------------------------------------------------------- /Acha/Acha/Presentation/TabBar/Community/ViewController/CommunityDetailViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Presentation/TabBar/Community/ViewController/CommunityDetailViewController.swift -------------------------------------------------------------------------------- /Acha/Acha/Presentation/TabBar/Community/ViewController/CommunityMainViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Presentation/TabBar/Community/ViewController/CommunityMainViewController.swift -------------------------------------------------------------------------------- /Acha/Acha/Presentation/TabBar/Community/ViewController/CommunityPostWriteViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Presentation/TabBar/Community/ViewController/CommunityPostWriteViewController.swift -------------------------------------------------------------------------------- /Acha/Acha/Presentation/TabBar/Community/ViewModel/CommunityDetailViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Presentation/TabBar/Community/ViewModel/CommunityDetailViewModel.swift -------------------------------------------------------------------------------- /Acha/Acha/Presentation/TabBar/Community/ViewModel/CommunityMainViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Presentation/TabBar/Community/ViewModel/CommunityMainViewModel.swift -------------------------------------------------------------------------------- /Acha/Acha/Presentation/TabBar/Community/ViewModel/CommunityPostWriteViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Presentation/TabBar/Community/ViewModel/CommunityPostWriteViewModel.swift -------------------------------------------------------------------------------- /Acha/Acha/Presentation/TabBar/Coordinator/CommunityCoordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Presentation/TabBar/Coordinator/CommunityCoordinator.swift -------------------------------------------------------------------------------- /Acha/Acha/Presentation/TabBar/Coordinator/HomeCoordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Presentation/TabBar/Coordinator/HomeCoordinator.swift -------------------------------------------------------------------------------- /Acha/Acha/Presentation/TabBar/Coordinator/MultiGameCoordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Presentation/TabBar/Coordinator/MultiGameCoordinator.swift -------------------------------------------------------------------------------- /Acha/Acha/Presentation/TabBar/Coordinator/MyPageCoordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Presentation/TabBar/Coordinator/MyPageCoordinator.swift -------------------------------------------------------------------------------- /Acha/Acha/Presentation/TabBar/Coordinator/RecordCoordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Presentation/TabBar/Coordinator/RecordCoordinator.swift -------------------------------------------------------------------------------- /Acha/Acha/Presentation/TabBar/Coordinator/SingleGameCoordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Presentation/TabBar/Coordinator/SingleGameCoordinator.swift -------------------------------------------------------------------------------- /Acha/Acha/Presentation/TabBar/Coordinator/TabBarCoordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Presentation/TabBar/Coordinator/TabBarCoordinator.swift -------------------------------------------------------------------------------- /Acha/Acha/Presentation/TabBar/Home/Common/DistanceAndTimeBar.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Presentation/TabBar/Home/Common/DistanceAndTimeBar.swift -------------------------------------------------------------------------------- /Acha/Acha/Presentation/TabBar/Home/Common/PaddingLabel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Presentation/TabBar/Home/Common/PaddingLabel.swift -------------------------------------------------------------------------------- /Acha/Acha/Presentation/TabBar/Home/HomeView/ViewController/HomeViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Presentation/TabBar/Home/HomeView/ViewController/HomeViewController.swift -------------------------------------------------------------------------------- /Acha/Acha/Presentation/TabBar/Home/HomeView/ViewController/MultiGameEnterViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Presentation/TabBar/Home/HomeView/ViewController/MultiGameEnterViewController.swift -------------------------------------------------------------------------------- /Acha/Acha/Presentation/TabBar/Home/HomeView/ViewController/QRReaderViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Presentation/TabBar/Home/HomeView/ViewController/QRReaderViewController.swift -------------------------------------------------------------------------------- /Acha/Acha/Presentation/TabBar/Home/HomeView/ViewModel/HomeViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Presentation/TabBar/Home/HomeView/ViewModel/HomeViewModel.swift -------------------------------------------------------------------------------- /Acha/Acha/Presentation/TabBar/Home/InGameMenus/View/InGameMenuCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Presentation/TabBar/Home/InGameMenus/View/InGameMenuCell.swift -------------------------------------------------------------------------------- /Acha/Acha/Presentation/TabBar/Home/InGameMenus/ViewController/InGamePlayMenuViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Presentation/TabBar/Home/InGameMenus/ViewController/InGamePlayMenuViewController.swift -------------------------------------------------------------------------------- /Acha/Acha/Presentation/TabBar/Home/InGameMenus/ViewController/InGameRankingViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Presentation/TabBar/Home/InGameMenus/ViewController/InGameRankingViewController.swift -------------------------------------------------------------------------------- /Acha/Acha/Presentation/TabBar/Home/InGameMenus/ViewController/InGameRecordViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Presentation/TabBar/Home/InGameMenus/ViewController/InGameRecordViewController.swift -------------------------------------------------------------------------------- /Acha/Acha/Presentation/TabBar/Home/InGameMenus/ViewModel/InGameRankingViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Presentation/TabBar/Home/InGameMenus/ViewModel/InGameRankingViewModel.swift -------------------------------------------------------------------------------- /Acha/Acha/Presentation/TabBar/Home/InGameMenus/ViewModel/InGameRecordViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Presentation/TabBar/Home/InGameMenus/ViewModel/InGameRecordViewModel.swift -------------------------------------------------------------------------------- /Acha/Acha/Presentation/TabBar/Home/MultiGame/View/ChatCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Presentation/TabBar/Home/MultiGame/View/ChatCell.swift -------------------------------------------------------------------------------- /Acha/Acha/Presentation/TabBar/Home/MultiGame/View/GameRankCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Presentation/TabBar/Home/MultiGame/View/GameRankCell.swift -------------------------------------------------------------------------------- /Acha/Acha/Presentation/TabBar/Home/MultiGame/View/GameRoomCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Presentation/TabBar/Home/MultiGame/View/GameRoomCell.swift -------------------------------------------------------------------------------- /Acha/Acha/Presentation/TabBar/Home/MultiGame/View/GameRoomHeader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Presentation/TabBar/Home/MultiGame/View/GameRoomHeader.swift -------------------------------------------------------------------------------- /Acha/Acha/Presentation/TabBar/Home/MultiGame/View/PlayerAnnotation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Presentation/TabBar/Home/MultiGame/View/PlayerAnnotation.swift -------------------------------------------------------------------------------- /Acha/Acha/Presentation/TabBar/Home/MultiGame/View/PlayerAnnotationView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Presentation/TabBar/Home/MultiGame/View/PlayerAnnotationView.swift -------------------------------------------------------------------------------- /Acha/Acha/Presentation/TabBar/Home/MultiGame/View/PlayerCircle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Presentation/TabBar/Home/MultiGame/View/PlayerCircle.swift -------------------------------------------------------------------------------- /Acha/Acha/Presentation/TabBar/Home/MultiGame/ViewController/MultiGameChatViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Presentation/TabBar/Home/MultiGame/ViewController/MultiGameChatViewController.swift -------------------------------------------------------------------------------- /Acha/Acha/Presentation/TabBar/Home/MultiGame/ViewController/MultiGameRoomViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Presentation/TabBar/Home/MultiGame/ViewController/MultiGameRoomViewController.swift -------------------------------------------------------------------------------- /Acha/Acha/Presentation/TabBar/Home/MultiGame/ViewController/MultiGameViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Presentation/TabBar/Home/MultiGame/ViewController/MultiGameViewController.swift -------------------------------------------------------------------------------- /Acha/Acha/Presentation/TabBar/Home/MultiGame/ViewModel/MultiGameChatViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Presentation/TabBar/Home/MultiGame/ViewModel/MultiGameChatViewModel.swift -------------------------------------------------------------------------------- /Acha/Acha/Presentation/TabBar/Home/MultiGame/ViewModel/MultiGameRoomViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Presentation/TabBar/Home/MultiGame/ViewModel/MultiGameRoomViewModel.swift -------------------------------------------------------------------------------- /Acha/Acha/Presentation/TabBar/Home/MultiGame/ViewModel/MultiGameViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Presentation/TabBar/Home/MultiGame/ViewModel/MultiGameViewModel.swift -------------------------------------------------------------------------------- /Acha/Acha/Presentation/TabBar/Home/SelectMap/View/SelectMapRankingHeaderView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Presentation/TabBar/Home/SelectMap/View/SelectMapRankingHeaderView.swift -------------------------------------------------------------------------------- /Acha/Acha/Presentation/TabBar/Home/SelectMap/View/SelectMapRecordCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Presentation/TabBar/Home/SelectMap/View/SelectMapRecordCell.swift -------------------------------------------------------------------------------- /Acha/Acha/Presentation/TabBar/Home/SelectMap/ViewController/SelectMapViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Presentation/TabBar/Home/SelectMap/ViewController/SelectMapViewController.swift -------------------------------------------------------------------------------- /Acha/Acha/Presentation/TabBar/Home/SelectMap/ViewModel/SelectMapViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Presentation/TabBar/Home/SelectMap/ViewModel/SelectMapViewModel.swift -------------------------------------------------------------------------------- /Acha/Acha/Presentation/TabBar/Home/SingleGame/View/GameOverView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Presentation/TabBar/Home/SingleGame/View/GameOverView.swift -------------------------------------------------------------------------------- /Acha/Acha/Presentation/TabBar/Home/SingleGame/ViewController/SingleGameViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Presentation/TabBar/Home/SingleGame/ViewController/SingleGameViewController.swift -------------------------------------------------------------------------------- /Acha/Acha/Presentation/TabBar/Home/SingleGame/ViewModel/SingleGameViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Presentation/TabBar/Home/SingleGame/ViewModel/SingleGameViewModel.swift -------------------------------------------------------------------------------- /Acha/Acha/Presentation/TabBar/MyPage/View/BadgeCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Presentation/TabBar/MyPage/View/BadgeCell.swift -------------------------------------------------------------------------------- /Acha/Acha/Presentation/TabBar/MyPage/View/InfoTextFieldView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Presentation/TabBar/MyPage/View/InfoTextFieldView.swift -------------------------------------------------------------------------------- /Acha/Acha/Presentation/TabBar/MyPage/View/MyPageHeaderView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Presentation/TabBar/MyPage/View/MyPageHeaderView.swift -------------------------------------------------------------------------------- /Acha/Acha/Presentation/TabBar/MyPage/View/SettingCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Presentation/TabBar/MyPage/View/SettingCell.swift -------------------------------------------------------------------------------- /Acha/Acha/Presentation/TabBar/MyPage/ViewController/BadgeViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Presentation/TabBar/MyPage/ViewController/BadgeViewController.swift -------------------------------------------------------------------------------- /Acha/Acha/Presentation/TabBar/MyPage/ViewController/CharacterSelectViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Presentation/TabBar/MyPage/ViewController/CharacterSelectViewController.swift -------------------------------------------------------------------------------- /Acha/Acha/Presentation/TabBar/MyPage/ViewController/MyInfoEditViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Presentation/TabBar/MyPage/ViewController/MyInfoEditViewController.swift -------------------------------------------------------------------------------- /Acha/Acha/Presentation/TabBar/MyPage/ViewController/MyPageViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Presentation/TabBar/MyPage/ViewController/MyPageViewController.swift -------------------------------------------------------------------------------- /Acha/Acha/Presentation/TabBar/MyPage/ViewModel/BadgeViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Presentation/TabBar/MyPage/ViewModel/BadgeViewModel.swift -------------------------------------------------------------------------------- /Acha/Acha/Presentation/TabBar/MyPage/ViewModel/CharacterSelectViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Presentation/TabBar/MyPage/ViewModel/CharacterSelectViewModel.swift -------------------------------------------------------------------------------- /Acha/Acha/Presentation/TabBar/MyPage/ViewModel/MyInfoEditViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Presentation/TabBar/MyPage/ViewModel/MyInfoEditViewModel.swift -------------------------------------------------------------------------------- /Acha/Acha/Presentation/TabBar/MyPage/ViewModel/MyPageViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Presentation/TabBar/MyPage/ViewModel/MyPageViewModel.swift -------------------------------------------------------------------------------- /Acha/Acha/Presentation/TabBar/Record/View/LineGraphView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Presentation/TabBar/Record/View/LineGraphView.swift -------------------------------------------------------------------------------- /Acha/Acha/Presentation/TabBar/Record/View/RecordMainCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Presentation/TabBar/Record/View/RecordMainCell.swift -------------------------------------------------------------------------------- /Acha/Acha/Presentation/TabBar/Record/View/RecordMainChartCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Presentation/TabBar/Record/View/RecordMainChartCell.swift -------------------------------------------------------------------------------- /Acha/Acha/Presentation/TabBar/Record/View/RecordMainHeaderView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Presentation/TabBar/Record/View/RecordMainHeaderView.swift -------------------------------------------------------------------------------- /Acha/Acha/Presentation/TabBar/Record/View/RecordMapCategoryCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Presentation/TabBar/Record/View/RecordMapCategoryCell.swift -------------------------------------------------------------------------------- /Acha/Acha/Presentation/TabBar/Record/View/RecordMapHeaderView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Presentation/TabBar/Record/View/RecordMapHeaderView.swift -------------------------------------------------------------------------------- /Acha/Acha/Presentation/TabBar/Record/View/RecordMapImageCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Presentation/TabBar/Record/View/RecordMapImageCell.swift -------------------------------------------------------------------------------- /Acha/Acha/Presentation/TabBar/Record/View/RecordMapRankingCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Presentation/TabBar/Record/View/RecordMapRankingCell.swift -------------------------------------------------------------------------------- /Acha/Acha/Presentation/TabBar/Record/ViewController/RecordMainViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Presentation/TabBar/Record/ViewController/RecordMainViewController.swift -------------------------------------------------------------------------------- /Acha/Acha/Presentation/TabBar/Record/ViewController/RecordMapViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Presentation/TabBar/Record/ViewController/RecordMapViewController.swift -------------------------------------------------------------------------------- /Acha/Acha/Presentation/TabBar/Record/ViewController/RecordPageViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Presentation/TabBar/Record/ViewController/RecordPageViewController.swift -------------------------------------------------------------------------------- /Acha/Acha/Presentation/TabBar/Record/ViewModel/RecordMainViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Presentation/TabBar/Record/ViewModel/RecordMainViewModel.swift -------------------------------------------------------------------------------- /Acha/Acha/Presentation/TabBar/Record/ViewModel/RecordMapViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Presentation/TabBar/Record/ViewModel/RecordMapViewModel.swift -------------------------------------------------------------------------------- /Acha/Acha/Util/Dependency/DIContainer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Util/Dependency/DIContainer.swift -------------------------------------------------------------------------------- /Acha/Acha/Util/Dependency/DependenciesContainer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Util/Dependency/DependenciesContainer.swift -------------------------------------------------------------------------------- /Acha/Acha/Util/Dependency/DependenciesDefinition.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Util/Dependency/DependenciesDefinition.swift -------------------------------------------------------------------------------- /Acha/Acha/Util/Dependency/DependencyKey.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Util/Dependency/DependencyKey.swift -------------------------------------------------------------------------------- /Acha/Acha/Util/Enums/AnimationKeyPath.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Util/Enums/AnimationKeyPath.swift -------------------------------------------------------------------------------- /Acha/Acha/Util/Enums/Errors.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Util/Enums/Errors.swift -------------------------------------------------------------------------------- /Acha/Acha/Util/Enums/FirebaseRealtimeType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Util/Enums/FirebaseRealtimeType.swift -------------------------------------------------------------------------------- /Acha/Acha/Util/Enums/FirebaseStorageType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Util/Enums/FirebaseStorageType.swift -------------------------------------------------------------------------------- /Acha/Acha/Util/Enums/Locations.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Util/Enums/Locations.swift -------------------------------------------------------------------------------- /Acha/Acha/Util/Enums/PinCharacter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Util/Enums/PinCharacter.swift -------------------------------------------------------------------------------- /Acha/Acha/Util/Enums/SystemImageNameSpace.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Util/Enums/SystemImageNameSpace.swift -------------------------------------------------------------------------------- /Acha/Acha/Util/Enums/TabBarType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Util/Enums/TabBarType.swift -------------------------------------------------------------------------------- /Acha/Acha/Util/Error/FirebaseServiceError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Util/Error/FirebaseServiceError.swift -------------------------------------------------------------------------------- /Acha/Acha/Util/Extension/CALayer+.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Util/Extension/CALayer+.swift -------------------------------------------------------------------------------- /Acha/Acha/Util/Extension/CLLocationCoordinate2D+.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Util/Extension/CLLocationCoordinate2D+.swift -------------------------------------------------------------------------------- /Acha/Acha/Util/Extension/Collection+.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Util/Extension/Collection+.swift -------------------------------------------------------------------------------- /Acha/Acha/Util/Extension/Date+.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Util/Extension/Date+.swift -------------------------------------------------------------------------------- /Acha/Acha/Util/Extension/Double+.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Util/Extension/Double+.swift -------------------------------------------------------------------------------- /Acha/Acha/Util/Extension/Encodable+.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Util/Extension/Encodable+.swift -------------------------------------------------------------------------------- /Acha/Acha/Util/Extension/Int+.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Util/Extension/Int+.swift -------------------------------------------------------------------------------- /Acha/Acha/Util/Extension/MKCircle+.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Util/Extension/MKCircle+.swift -------------------------------------------------------------------------------- /Acha/Acha/Util/Extension/Reactive+/MKMapView+Rx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Util/Extension/Reactive+/MKMapView+Rx.swift -------------------------------------------------------------------------------- /Acha/Acha/Util/Extension/Reactive+/UIApplication+Rx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Util/Extension/Reactive+/UIApplication+Rx.swift -------------------------------------------------------------------------------- /Acha/Acha/Util/Extension/Reactive+/UIView+Rx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Util/Extension/Reactive+/UIView+Rx.swift -------------------------------------------------------------------------------- /Acha/Acha/Util/Extension/Reactive+/UIViewCotnroller+Rx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Util/Extension/Reactive+/UIViewCotnroller+Rx.swift -------------------------------------------------------------------------------- /Acha/Acha/Util/Extension/String+.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Util/Extension/String+.swift -------------------------------------------------------------------------------- /Acha/Acha/Util/Extension/UIButton+.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Util/Extension/UIButton+.swift -------------------------------------------------------------------------------- /Acha/Acha/Util/Extension/UIColor+.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Util/Extension/UIColor+.swift -------------------------------------------------------------------------------- /Acha/Acha/Util/Extension/UIFont+.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Util/Extension/UIFont+.swift -------------------------------------------------------------------------------- /Acha/Acha/Util/Extension/UIImage+.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Util/Extension/UIImage+.swift -------------------------------------------------------------------------------- /Acha/Acha/Util/Extension/UITextField+.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Util/Extension/UITextField+.swift -------------------------------------------------------------------------------- /Acha/Acha/Util/Extension/UIViewController+.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Util/Extension/UIViewController+.swift -------------------------------------------------------------------------------- /Acha/Acha/Util/Manager/AchaKeyboardManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Util/Manager/AchaKeyboardManager.swift -------------------------------------------------------------------------------- /Acha/Acha/Util/Manager/KeyChainManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Util/Manager/KeyChainManager.swift -------------------------------------------------------------------------------- /Acha/Acha/Util/Map/MapAnnotation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Util/Map/MapAnnotation.swift -------------------------------------------------------------------------------- /Acha/Acha/Util/Service/DefaultAuthService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Util/Service/DefaultAuthService.swift -------------------------------------------------------------------------------- /Acha/Acha/Util/Service/DefaultFirebaseStorageNetworkService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Util/Service/DefaultFirebaseStorageNetworkService.swift -------------------------------------------------------------------------------- /Acha/Acha/Util/Service/DefaultHealthKitService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Util/Service/DefaultHealthKitService.swift -------------------------------------------------------------------------------- /Acha/Acha/Util/Service/DefaultImageCacheService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Util/Service/DefaultImageCacheService.swift -------------------------------------------------------------------------------- /Acha/Acha/Util/Service/DefaultKeychainService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Util/Service/DefaultKeychainService.swift -------------------------------------------------------------------------------- /Acha/Acha/Util/Service/DefaultLocationService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Util/Service/DefaultLocationService.swift -------------------------------------------------------------------------------- /Acha/Acha/Util/Service/DefaultRandomService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Util/Service/DefaultRandomService.swift -------------------------------------------------------------------------------- /Acha/Acha/Util/Service/DefaultRealtimeDatabaseNetworkService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Util/Service/DefaultRealtimeDatabaseNetworkService.swift -------------------------------------------------------------------------------- /Acha/Acha/Util/Service/DefaultTimerService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Util/Service/DefaultTimerService.swift -------------------------------------------------------------------------------- /Acha/Acha/Util/Service/Protocol/AuthService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Util/Service/Protocol/AuthService.swift -------------------------------------------------------------------------------- /Acha/Acha/Util/Service/Protocol/FirebaseStorageNetworkService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Util/Service/Protocol/FirebaseStorageNetworkService.swift -------------------------------------------------------------------------------- /Acha/Acha/Util/Service/Protocol/HealthKitService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Util/Service/Protocol/HealthKitService.swift -------------------------------------------------------------------------------- /Acha/Acha/Util/Service/Protocol/ImageCacheService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Util/Service/Protocol/ImageCacheService.swift -------------------------------------------------------------------------------- /Acha/Acha/Util/Service/Protocol/KeychainService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Util/Service/Protocol/KeychainService.swift -------------------------------------------------------------------------------- /Acha/Acha/Util/Service/Protocol/LocationService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Util/Service/Protocol/LocationService.swift -------------------------------------------------------------------------------- /Acha/Acha/Util/Service/Protocol/RandomService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Util/Service/Protocol/RandomService.swift -------------------------------------------------------------------------------- /Acha/Acha/Util/Service/Protocol/RealtimeDatabaseNetworkService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Util/Service/Protocol/RealtimeDatabaseNetworkService.swift -------------------------------------------------------------------------------- /Acha/Acha/Util/Service/Protocol/TimerService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/Acha/Util/Service/Protocol/TimerService.swift -------------------------------------------------------------------------------- /Acha/AchaTests/AchaTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/AchaTests/AchaTests.swift -------------------------------------------------------------------------------- /Acha/AchaUITests/AchaUITests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/AchaUITests/AchaUITests.swift -------------------------------------------------------------------------------- /Acha/AchaUITests/AchaUITestsLaunchTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/AchaUITests/AchaUITestsLaunchTests.swift -------------------------------------------------------------------------------- /Acha/GPX/WorkSpace by 25km:h.gpx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/GPX/WorkSpace by 25km:h.gpx -------------------------------------------------------------------------------- /Acha/GPX/WorkSpace by 6km:h.gpx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/GPX/WorkSpace by 6km:h.gpx -------------------------------------------------------------------------------- /Acha/GPX/국민대 12KMH.gpx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/GPX/국민대 12KMH.gpx -------------------------------------------------------------------------------- /Acha/GPX/국민대 30KMH.gpx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/GPX/국민대 30KMH.gpx -------------------------------------------------------------------------------- /Acha/GPX/부원여중 12KMH.gpx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/GPX/부원여중 12KMH.gpx -------------------------------------------------------------------------------- /Acha/GPX/부원여중 5MPH.gpx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/GPX/부원여중 5MPH.gpx -------------------------------------------------------------------------------- /Acha/GPX/부평동초등학교 20MPH.gpx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/GPX/부평동초등학교 20MPH.gpx -------------------------------------------------------------------------------- /Acha/GPX/부평동초등학교 4.2MPH.gpx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/GPX/부평동초등학교 4.2MPH.gpx -------------------------------------------------------------------------------- /Acha/GPX/부평동초등학교 4MPH.gpx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/GPX/부평동초등학교 4MPH.gpx -------------------------------------------------------------------------------- /Acha/GPX/부평동초등학교 5MPH.gpx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/Acha/GPX/부평동초등학교 5MPH.gpx -------------------------------------------------------------------------------- /AchaLibrary/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/AchaLibrary/.gitignore -------------------------------------------------------------------------------- /AchaLibrary/.swiftpm/xcode/package.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/AchaLibrary/.swiftpm/xcode/package.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /AchaLibrary/.swiftpm/xcode/xcshareddata/xcschemes/AchaLibrary.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/AchaLibrary/.swiftpm/xcode/xcshareddata/xcschemes/AchaLibrary.xcscheme -------------------------------------------------------------------------------- /AchaLibrary/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/AchaLibrary/Package.resolved -------------------------------------------------------------------------------- /AchaLibrary/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/AchaLibrary/Package.swift -------------------------------------------------------------------------------- /AchaLibrary/README.md: -------------------------------------------------------------------------------- 1 | # AchaLibrary 2 | 3 | A description of this package. 4 | -------------------------------------------------------------------------------- /AchaLibrary/Sources/AchaLibrary/AchaLibrary.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/AchaLibrary/Sources/AchaLibrary/AchaLibrary.swift -------------------------------------------------------------------------------- /AchaLibrary/Tests/AchaLibraryTests/AchaLibraryTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/AchaLibrary/Tests/AchaLibraryTests/AchaLibraryTests.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/iOS08_Acha/HEAD/README.md --------------------------------------------------------------------------------