├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── bug.yml │ └── do.yml └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── .mise.toml ├── .swiftlint.yml ├── .tuist-bin ├── ProjectDescription.framework │ ├── Modules │ │ └── ProjectDescription.swiftmodule │ │ │ ├── arm64-apple-macos.swiftdoc │ │ │ ├── arm64-apple-macos.swiftinterface │ │ │ ├── arm64-apple-macos.swiftmodule │ │ │ ├── x86_64-apple-macos.swiftdoc │ │ │ ├── x86_64-apple-macos.swiftinterface │ │ │ └── x86_64-apple-macos.swiftmodule │ ├── ProjectDescription │ ├── Resources │ └── Versions │ │ ├── A │ │ ├── ProjectDescription │ │ └── Resources │ │ │ └── Info.plist │ │ └── Current ├── Templates │ ├── AppProject.stencil │ ├── AppTests.stencil │ ├── Config.stencil │ ├── Gitignore.stencil │ ├── KitSource.stencil │ ├── KitTests.stencil │ ├── LaunchScreen+iOS.stencil │ ├── LaunchScreen+macOS.stencil │ ├── LaunchScreen+tvOS.stencil │ ├── LocalHelper.stencil │ ├── Package.stencil │ ├── Package.swift │ ├── Plugin.stencil │ ├── Project+Templates.stencil │ ├── UISource.stencil │ ├── UITests.stencil │ ├── default │ │ ├── AppDelegate.stencil │ │ └── default.swift │ ├── main.stencil │ └── swiftui │ │ ├── ContentView.stencil │ │ ├── Preview Content │ │ └── Preview Assets.xcassets │ │ │ └── Contents.json │ │ ├── app.stencil │ │ ├── ios │ │ └── Assets.xcassets │ │ │ ├── AccentColor.colorset │ │ │ └── Contents.json │ │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── macos │ │ └── Assets.xcassets │ │ │ ├── AccentColor.colorset │ │ │ └── Contents.json │ │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── swiftui.swift │ │ └── tvos │ │ └── Assets.xcassets │ │ ├── AccentColor.colorset │ │ └── Contents.json │ │ ├── App Icon & Top Shelf Image.brandassets │ │ ├── App Icon - App Store.imagestack │ │ │ ├── Back.imagestacklayer │ │ │ │ ├── Content.imageset │ │ │ │ │ └── Contents.json │ │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ ├── Front.imagestacklayer │ │ │ │ ├── Content.imageset │ │ │ │ │ └── Contents.json │ │ │ │ └── Contents.json │ │ │ └── Middle.imagestacklayer │ │ │ │ ├── Content.imageset │ │ │ │ └── Contents.json │ │ │ │ └── Contents.json │ │ ├── App Icon.imagestack │ │ │ ├── Back.imagestacklayer │ │ │ │ ├── Content.imageset │ │ │ │ │ └── Contents.json │ │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ ├── Front.imagestacklayer │ │ │ │ ├── Content.imageset │ │ │ │ │ └── Contents.json │ │ │ │ └── Contents.json │ │ │ └── Middle.imagestacklayer │ │ │ │ ├── Content.imageset │ │ │ │ └── Contents.json │ │ │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── Top Shelf Image Wide.imageset │ │ │ └── Contents.json │ │ └── Top Shelf Image.imageset │ │ │ └── Contents.json │ │ └── Contents.json ├── libswift_Concurrency.dylib ├── tuist └── vendor │ └── xcbeautify │ ├── LICENSE │ └── xcbeautify ├── Makefile ├── Plugin ├── ConfigurationPlugin │ ├── Plugin.swift │ └── ProjectDescriptionHelpers │ │ ├── Configuration+Ext.swift │ │ ├── Path+XCConfig.swift │ │ └── ProjectDeployTarget.swift ├── DependencyPlugin │ ├── Plugin.swift │ └── ProjectDescriptionHelpers │ │ ├── Dependency+SPM.swift │ │ ├── Dependency+Target.swift │ │ ├── ModulePaths.swift │ │ └── PathExtension.swift └── EnvironmentPlugin │ ├── Plugin.swift │ └── ProjectDescriptionHelpers │ └── ProjectEnvironment.swift ├── Projects ├── App │ ├── .swiftlint.yml │ ├── AppExtension │ │ ├── Resources │ │ │ ├── Assets.xcassets │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ ├── AppIcon.png │ │ │ │ │ └── Contents.json │ │ │ │ └── Contents.json │ │ │ └── LaunchScreen.storyboard │ │ ├── Sources │ │ │ ├── DI │ │ │ │ ├── Meal │ │ │ │ │ └── WidgetComponent+Meal.swift │ │ │ │ ├── NeedleGenerated.swift │ │ │ │ ├── Notice │ │ │ │ │ └── WidgetComponent+Notice.swift │ │ │ │ ├── Point │ │ │ │ │ └── WidgetComponent+Point.swift │ │ │ │ └── WidgetComponent.swift │ │ │ ├── DMSWidget.swift │ │ │ ├── Meal │ │ │ │ ├── DMSMealComponent.swift │ │ │ │ ├── DMSMealWidget.swift │ │ │ │ └── DMSMealWidgetEntryView.swift │ │ │ ├── Notice │ │ │ │ ├── DMSNoticeComponent.swift │ │ │ │ ├── DMSNoticeEntryView.swift │ │ │ │ └── DMSNoticeWidget.swift │ │ │ └── Point │ │ │ │ ├── DMSPointComponent.swift │ │ │ │ ├── DMSPointEntryView.swift │ │ │ │ ├── DMSPointIntent.intentdefinition │ │ │ │ ├── DMSPointWidget.swift │ │ │ │ └── DisplayPointPart.swift │ │ └── Support │ │ │ ├── DMS-AliensWidget.entitlements │ │ │ └── Widget-Info.plist │ ├── Derived │ │ └── Sources │ │ │ ├── TuistAssets+DMSAliens.swift │ │ │ ├── TuistAssets+DMSAliensWatchApp.swift │ │ │ ├── TuistAssets+DMSAliensWidget.swift │ │ │ ├── TuistBundle+DMSAliens.swift │ │ │ ├── TuistBundle+DMSAliensWatchApp.swift │ │ │ └── TuistBundle+DMSAliensWidget.swift │ ├── Project.swift │ ├── Resources │ │ ├── Assets.xcassets │ │ │ ├── AccentColor.colorset │ │ │ │ └── Contents.json │ │ │ ├── AppIcon.appiconset │ │ │ │ ├── AppIcon.png │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ └── LaunchScreen.storyboard │ ├── Sources │ │ └── Application │ │ │ ├── AppDelegate.swift │ │ │ ├── DI │ │ │ ├── AppComponent.swift │ │ │ ├── Auth │ │ │ │ └── AppComponent+Auth.swift │ │ │ ├── Files │ │ │ │ └── AppComponent+Files.swift │ │ │ ├── Meal │ │ │ │ └── AppComponent+Meal.swift │ │ │ ├── Notice │ │ │ │ └── AppComponent+Notice.swift │ │ │ ├── Notification │ │ │ │ └── AppComponent+Notification.swift │ │ │ ├── Outing │ │ │ │ └── AppComponent+Outing.swift │ │ │ ├── Points │ │ │ │ └── AppComponent+Points.swift │ │ │ ├── Presigned │ │ │ │ └── AppComponent+Presigned.swift │ │ │ ├── Remains │ │ │ │ └── AppComponent+Remains.swift │ │ │ ├── School │ │ │ │ └── AppComponent+School.swift │ │ │ ├── Students │ │ │ │ └── AppComponent+Students.swift │ │ │ ├── StudyRooms │ │ │ │ └── AppComponent+StudyRooms.swift │ │ │ └── Users │ │ │ │ └── AppComponent+Users.swift │ │ │ ├── DMSApp.swift │ │ │ └── NeedleGenerated.swift │ ├── Support │ │ ├── DMS-Aliens.entitlements │ │ └── Info.plist │ ├── Tests │ │ ├── .gitkeep │ │ ├── Support │ │ │ └── Tests-Info.plist │ │ └── TargetTest.swift │ └── WatchApp │ │ ├── Derived │ │ └── Sources │ │ │ ├── TuistAssets+DMSAliensWatchExtension.swift │ │ │ └── TuistBundle+DMSAliensWatchExtension.swift │ │ ├── Resources │ │ └── Assets.xcassets │ │ │ ├── AccentColor.colorset │ │ │ └── Contents.json │ │ │ ├── AppIcon.appiconset │ │ │ ├── AppIcon.png │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── Sources │ │ ├── App │ │ │ ├── DI │ │ │ │ ├── App │ │ │ │ │ └── AppAssembly.swift │ │ │ │ ├── DetailNotice │ │ │ │ │ └── DetailNoticeAssembly.swift │ │ │ │ ├── Main │ │ │ │ │ └── MainAssembly.swift │ │ │ │ ├── Meal │ │ │ │ │ └── MealAssembly.swift │ │ │ │ └── Notice │ │ │ │ │ └── NoticeAssembly.swift │ │ │ ├── DMSWatchApp.swift │ │ │ └── WatchSessionManager.swift │ │ ├── Presentation │ │ │ ├── DetailNotice │ │ │ │ ├── Factory │ │ │ │ │ └── DetailNoticeFactory.swift │ │ │ │ ├── Intent │ │ │ │ │ ├── DetailNoticeIntent.swift │ │ │ │ │ └── DetailNoticeIntentProtocol.swift │ │ │ │ ├── Model │ │ │ │ │ ├── DetailNoticeModel.swift │ │ │ │ │ └── DetailNoticeModelProtocol.swift │ │ │ │ └── View │ │ │ │ │ └── DetailNoticeView.swift │ │ │ ├── Main │ │ │ │ ├── Enum │ │ │ │ │ └── MainTab.swift │ │ │ │ ├── Factory │ │ │ │ │ └── MainFactory.swift │ │ │ │ ├── Intent │ │ │ │ │ ├── MainIntent.swift │ │ │ │ │ └── MainIntentProtocol.swift │ │ │ │ ├── Model │ │ │ │ │ ├── MainModel.swift │ │ │ │ │ └── MainModelProtocol.swift │ │ │ │ └── View │ │ │ │ │ └── MainView.swift │ │ │ ├── Meal │ │ │ │ ├── Enum │ │ │ │ │ └── DisplayMealPart.swift │ │ │ │ ├── Factory │ │ │ │ │ └── MealFactory.swift │ │ │ │ ├── Intent │ │ │ │ │ ├── MealIntent.swift │ │ │ │ │ └── MealIntentProtocol.swift │ │ │ │ ├── Model │ │ │ │ │ ├── MealModel.swift │ │ │ │ │ └── MealModelProtocol.swift │ │ │ │ └── View │ │ │ │ │ └── MealView.swift │ │ │ ├── Notice │ │ │ │ ├── Factory │ │ │ │ │ └── NoticeFactory.swift │ │ │ │ ├── Intent │ │ │ │ │ ├── NoticeIntent.swift │ │ │ │ │ └── NoticeIntentProtocol.swift │ │ │ │ ├── Model │ │ │ │ │ ├── NoticeModel.swift │ │ │ │ │ └── NoticeModelProtocol.swift │ │ │ │ └── View │ │ │ │ │ └── NoticeView.swift │ │ │ └── Utils │ │ │ │ └── View │ │ │ │ ├── DeferView.swift │ │ │ │ └── View+if.swift │ │ └── Utilities │ │ │ └── MVIContainer.swift │ │ └── Support │ │ ├── Extension-Info.plist │ │ └── Info.plist ├── Core │ └── Keychain │ │ ├── Derived │ │ └── InfoPlists │ │ │ └── KeychainTests-Info.plist │ │ ├── Project.swift │ │ ├── Sources │ │ ├── Keychain.swift │ │ ├── KeychainFake.swift │ │ └── KeychainImpl.swift │ │ └── Tests │ │ ├── .gitkeep │ │ └── TargetTest.swift ├── Domain │ ├── AuthDomain │ │ ├── Derived │ │ │ └── InfoPlists │ │ │ │ ├── AuthDomainInterface-Info.plist │ │ │ │ ├── AuthDomainTesting-Info.plist │ │ │ │ └── AuthDomainTests-Info.plist │ │ ├── Interface │ │ │ ├── DTO │ │ │ │ ├── DataTransfer │ │ │ │ │ └── SigninDmsFeaturesDataTransfer.swift │ │ │ │ ├── Request │ │ │ │ │ ├── EmailExistByAccountIDRequestDTO.swift │ │ │ │ │ ├── SendAuthCodeRequestDTO.swift │ │ │ │ │ ├── SigninRequestDTO.swift │ │ │ │ │ └── VerifyAuthCodeRequestDTO.swift │ │ │ │ └── Response │ │ │ │ │ ├── CheckAccountIDIsExistResponseDTO.swift │ │ │ │ │ └── SigninResponseDTO.swift │ │ │ ├── DataSource │ │ │ │ ├── LocalAuthDatasource.swift │ │ │ │ └── RemoteAuthDataSource.swift │ │ │ ├── Entity │ │ │ │ └── SigninDmsFeatures.swift │ │ │ ├── Enum │ │ │ │ └── AuthCodeType.swift │ │ │ ├── Error │ │ │ │ └── AuthDomainError.swift │ │ │ ├── Repository │ │ │ │ └── AuthRepository.swift │ │ │ └── UseCase │ │ │ │ ├── CheckAccountIDIsExistUseCase.swift │ │ │ │ ├── CheckEmailExistByAccountIDUseCase.swift │ │ │ │ ├── LogoutUseCase.swift │ │ │ │ ├── ReissueTokenUseCase.swift │ │ │ │ ├── SendAuthCodeUseCase.swift │ │ │ │ ├── SigninUseCase.swift │ │ │ │ └── VerifyAuthCodeUseCase.swift │ │ ├── Project.swift │ │ ├── Sources │ │ │ ├── API │ │ │ │ └── AuthAPI.swift │ │ │ ├── DataSource │ │ │ │ ├── LocalAuthDataSourceImpl.swift │ │ │ │ └── RemoteAuthDataSourceImpl.swift │ │ │ ├── Repository │ │ │ │ └── AuthRepositoryImpl.swift │ │ │ └── UseCase │ │ │ │ ├── CheckAccountIDIsExistUseCaseImpl.swift │ │ │ │ ├── CheckEmailExistByAccountIDUseCaseImpl.swift │ │ │ │ ├── LogoutUseCaseImpl.swift │ │ │ │ ├── ReissueTokenUseCaseImpl.swift │ │ │ │ ├── SendAuthCodeUseCaseImpl.swift │ │ │ │ ├── SigninUseCaseImpl.swift │ │ │ │ └── VerifyAuthCodeUseCaseImpl.swift │ │ ├── Testing │ │ │ ├── AuthRepositoryStub.swift │ │ │ ├── RemoteAuthDataSourceStub.swift │ │ │ └── SigninUseCaseFake.swift │ │ └── Tests │ │ │ └── AuthDomainTest.swift │ ├── BaseDomain │ │ ├── Derived │ │ │ └── InfoPlists │ │ │ │ ├── BaseDomain-Info.plist │ │ │ │ └── BaseDomainTests-Info.plist │ │ ├── Project.swift │ │ ├── Sources │ │ │ ├── API │ │ │ │ └── RefreshAPI.swift │ │ │ ├── Base │ │ │ │ └── BaseRemoteDataSource.swift │ │ │ ├── DmsAPI.swift │ │ │ ├── Error │ │ │ │ └── RefreshError.swift │ │ │ └── Plugins │ │ │ │ ├── Jwt │ │ │ │ ├── JwtAuthorizable.swift │ │ │ │ ├── JwtPlugin.swift │ │ │ │ └── TokenDTO.swift │ │ │ │ └── Logging │ │ │ │ └── MoyaLogginPlugin.swift │ │ └── Tests │ │ │ └── Project.swift │ ├── FilesDomain │ │ ├── Derived │ │ │ └── InfoPlists │ │ │ │ ├── FilesDomainInterface-Info.plist │ │ │ │ ├── FilesDomainTesting-Info.plist │ │ │ │ └── FilesDomainTests-Info.plist │ │ ├── Interface │ │ │ ├── DTO │ │ │ │ ├── DataTransfer │ │ │ │ │ └── FetchPresignedURLTransfer.swift │ │ │ │ └── Response │ │ │ │ │ ├── FetchPresignedURLResponseDTO.swift │ │ │ │ │ └── UploadFileResponseDTO.swift │ │ │ ├── DataSource │ │ │ │ ├── RemoteFilesDataSource.swift │ │ │ │ └── RemotePresignedDataSource.swift │ │ │ ├── Entity │ │ │ │ └── PresignedURLEntity.swift │ │ │ ├── Error │ │ │ │ └── FilesDomainError.swift │ │ │ ├── Repository │ │ │ │ ├── FilesRepository.swift │ │ │ │ └── PresignedRepository.swift │ │ │ └── UseCase │ │ │ │ ├── FetchPresignedURLUseCase.swift │ │ │ │ ├── PresignedUploadFileUseCase.swift │ │ │ │ └── UploadFileUseCase.swift │ │ ├── Project.swift │ │ ├── Sources │ │ │ ├── API │ │ │ │ ├── FilesAPI.swift │ │ │ │ └── PresignedAPI.swift │ │ │ ├── DataSource │ │ │ │ ├── RemoteFilesDataSourceImpl.swift │ │ │ │ └── RemotePresignedDataSourceImpl.swift │ │ │ ├── Repository │ │ │ │ ├── FilesRepositoryImpl.swift │ │ │ │ └── PresignedRepositoryImpl.swift │ │ │ └── UseCase │ │ │ │ ├── FetchPresignedURLUseCaseImpl.swift │ │ │ │ ├── PresignedUploadFileUseCaseImpl.swift │ │ │ │ └── UploadFileUseCaseImpl.swift │ │ ├── Testing │ │ │ ├── RemoteFilesDataSourceStub.swift │ │ │ └── RemotePresignedDataSourceStub.swift │ │ └── Tests │ │ │ └── FilesDomainTest.swift │ ├── MealDomain │ │ ├── Derived │ │ │ └── InfoPlists │ │ │ │ ├── MealDomainInterface-Info.plist │ │ │ │ ├── MealDomainTesting-Info.plist │ │ │ │ └── MealDomainTests-Info.plist │ │ ├── Interface │ │ │ ├── DTO │ │ │ │ ├── DataTransfer │ │ │ │ │ └── FetchMealListTransfer.swift │ │ │ │ └── Response │ │ │ │ │ ├── FetchMealListResponseDTO.swift │ │ │ │ │ └── SingleMealResponseDTO.swift │ │ │ ├── DataSource │ │ │ │ └── RemoteMealDataSource.swift │ │ │ ├── Entity │ │ │ │ └── MealEntity.swift │ │ │ ├── Enum │ │ │ │ └── DisplayMealPart.swift │ │ │ └── Error │ │ │ │ ├── MealDomainError.swift │ │ │ │ ├── Repository │ │ │ │ └── MealRepository.swift │ │ │ │ └── UseCase │ │ │ │ └── FetchMealListUseCase.swift │ │ ├── Project.swift │ │ ├── Sources │ │ │ ├── API │ │ │ │ └── MealAPI.swift │ │ │ ├── DataSource │ │ │ │ └── RemoteMealDataSourceImpl.swift │ │ │ ├── Repository │ │ │ │ └── MealRepositoryImpl.swift │ │ │ └── UseCase │ │ │ │ └── FetchMealListUseCaseImpl.swift │ │ ├── Testing │ │ │ └── RemoteMealDataSourceStub.swift │ │ └── Tests │ │ │ └── MealDomainTest.swift │ ├── NoticeDomain │ │ ├── Derived │ │ │ └── InfoPlists │ │ │ │ ├── NoticeDomainInterface-Info.plist │ │ │ │ ├── NoticeDomainTesting-Info.plist │ │ │ │ └── NoticeDomainTests-Info.plist │ │ ├── Interface │ │ │ ├── DTO │ │ │ │ ├── DataTransfer │ │ │ │ │ ├── FetchDetailNoticeTranfer.swift │ │ │ │ │ └── FetchNoticeListTransfer.swift │ │ │ │ └── Response │ │ │ │ │ ├── FetchDetailNoticeResponseDTO.swift │ │ │ │ │ ├── FetchNoticeListResponseDTO.swift │ │ │ │ │ ├── FetchWhetherNewNoticeResponseDTO.swift │ │ │ │ │ └── SingleNoticeResponseDTO.swift │ │ │ ├── DataSource │ │ │ │ └── RemoteNoticeDataSource.swift │ │ │ ├── Entity │ │ │ │ ├── DetailNoticeEntity.swift │ │ │ │ └── NoticeEntity.swift │ │ │ ├── Enum │ │ │ │ └── NoticeOrderType.swift │ │ │ ├── Error │ │ │ │ └── NoticeDomainError.swift │ │ │ ├── Repository │ │ │ │ └── NoticeRepository.swift │ │ │ └── UseCase │ │ │ │ ├── FetchDetailNoticeUseCase.swift │ │ │ │ ├── FetchNoticeListUseCase.swift │ │ │ │ └── FetchWhetherNewNoticeUseCase.swift │ │ ├── Project.swift │ │ ├── Sources │ │ │ ├── API │ │ │ │ └── NoticeAPI.swift │ │ │ ├── DataSource │ │ │ │ └── RemoteNoticeDataSourceImpl.swift │ │ │ ├── Repository │ │ │ │ └── NoticeRepository.swift │ │ │ └── UseCase │ │ │ │ ├── FetchDetailNoticeUseCase.swift │ │ │ │ ├── FetchNoticeListUseCaseImpl.swift │ │ │ │ └── FetchWhetherNewNoticeUseCaseImpl.swift │ │ ├── Testing │ │ │ ├── RemoteNoticeDataSourceStub.swift │ │ │ └── Testing.swift │ │ └── Tests │ │ │ └── NoticeDomainTest.swift │ ├── NotificationDomain │ │ ├── Derived │ │ │ └── InfoPlists │ │ │ │ ├── NotificationDomainInterface-Info.plist │ │ │ │ ├── NotificationDomainTesting-Info.plist │ │ │ │ └── NotificationDomainTests-Info.plist │ │ ├── Interface │ │ │ ├── DataSource │ │ │ │ └── RemoteNotifiactionDataSource.swift │ │ │ ├── Enum │ │ │ │ └── TopicType.swift │ │ │ ├── Error │ │ │ │ └── NotificationDomainError.swift │ │ │ ├── Repository │ │ │ │ └── NotificationRepository.swift │ │ │ └── UseCase │ │ │ │ └── SubscribeTopicUseCase.swift │ │ ├── Project.swift │ │ ├── Sources │ │ │ ├── API │ │ │ │ └── NotificationAPI.swift │ │ │ ├── DataSource │ │ │ │ └── RemoteNotificationDataSourceImpl.swift │ │ │ ├── Repository │ │ │ │ └── NotificationRepositoryImpl.swift │ │ │ └── UseCase │ │ │ │ └── SubscribeTopicUseCaseImpl.swift │ │ ├── Testing │ │ │ └── Testing.swift │ │ └── Tests │ │ │ └── NoticeDomainTest.swift │ ├── OutingDomain │ │ ├── Derived │ │ │ └── InfoPlists │ │ │ │ ├── OutingDomainInterface-Info.plist │ │ │ │ ├── OutingDomainTesting-Info.plist │ │ │ │ └── OutingDomainTests-Info.plist │ │ ├── Interface │ │ │ ├── DTO │ │ │ │ ├── DataTransfer │ │ │ │ │ ├── FetchMyOutingApplicationItemTranfer.swift │ │ │ │ │ ├── FetchOutingAvailableTimeTranfer.swift │ │ │ │ │ ├── FetchOutingTypeTranfer.swift │ │ │ │ │ └── OutingApplicationTransfer.swift │ │ │ │ ├── Request │ │ │ │ │ └── OutingApplyRequestDTO.swift │ │ │ │ └── Response │ │ │ │ │ ├── FetchOutingApplicationItemResponseDTO.swift │ │ │ │ │ ├── FetchOutingAvailableTimeListDTO.swift │ │ │ │ │ ├── FetchOutingTypeResponseDTO.swift │ │ │ │ │ ├── OutingApplicationResponseDTO.swift │ │ │ │ │ └── SingleOutingAvailableTimeResponseDTO.swift │ │ │ ├── DataSource │ │ │ │ └── RemoteOutingDataSource.swift │ │ │ ├── Entity │ │ │ │ ├── MyOutingApplicationItemEntity.swift │ │ │ │ ├── OutingApplicationEntity.swift │ │ │ │ ├── OutingEntity.swift │ │ │ │ └── OutingTypeEntity.swift │ │ │ ├── Error │ │ │ │ └── OutingDomainError.swift │ │ │ ├── Repository │ │ │ │ └── OutingRepository.swift │ │ │ └── UseCase │ │ │ │ ├── DeleteOutingApplicationItemUseCase.swift │ │ │ │ ├── FetchMyOutingApplicationItemUseCase.swift │ │ │ │ ├── FetchOutingAvailableTimeUseCase.swift │ │ │ │ ├── FetchOutingTypeUseCase.swift │ │ │ │ └── OutingApplicationUseCase.swift │ │ ├── Project.swift │ │ ├── Sources │ │ │ ├── API │ │ │ │ └── OutingAPI.swift │ │ │ ├── DataSource │ │ │ │ └── RemoteOutingDataSourceImpl.swift │ │ │ ├── Repository │ │ │ │ └── OutingRepositoryImpl.swift │ │ │ └── UseCase │ │ │ │ ├── DeleteOutingApplicationItemUseCaseImpl.swift │ │ │ │ ├── FetchMyOutingApplicationItemUseCaseImpl.swift │ │ │ │ ├── FetchOutingAvailableTimeUseCaseImpl.swift │ │ │ │ ├── FetchOutingTypeUseCaseImpl.swift │ │ │ │ └── OutingApplicationUseCaseImpl.swift │ │ ├── Testing │ │ │ └── Project.swift │ │ └── Tests │ │ │ └── Project.swift │ ├── PointsDomain │ │ ├── Derived │ │ │ └── InfoPlists │ │ │ │ ├── PointsDomainInterface-Info.plist │ │ │ │ ├── PointsDomainTesting-Info.plist │ │ │ │ └── PointsDomainTests-Info.plist │ │ ├── Interface │ │ │ ├── DTO │ │ │ │ ├── DataTransfer │ │ │ │ │ └── FetchPointListTransfer.swift │ │ │ │ └── Response │ │ │ │ │ └── FetchPointListResponseDTO.swift │ │ │ ├── DataSource │ │ │ │ └── RemotePointsDataSource.swift │ │ │ ├── Entity │ │ │ │ └── PointEntity.swift │ │ │ ├── Enum │ │ │ │ └── PointsType.swift │ │ │ ├── Error │ │ │ │ └── PointsDomainError.swift │ │ │ ├── Repository │ │ │ │ └── PointsRepository.swift │ │ │ └── UseCase │ │ │ │ └── FetchPointListUseCase.swift │ │ ├── Project.swift │ │ ├── Sources │ │ │ ├── API │ │ │ │ └── PointsAPI.swift │ │ │ ├── DataSource │ │ │ │ └── RemotePointsDataSourceImpl.swift │ │ │ ├── Repository │ │ │ │ └── PointsRepositoryImpl.swift │ │ │ └── UseCase │ │ │ │ └── FetchPointListUseCaseImpl.swift │ │ ├── Testing │ │ │ ├── RemotePointsDataSourceStub.swift │ │ │ └── Testing.swift │ │ └── Tests │ │ │ └── PointsDomainTest.swift │ ├── RemainsDomain │ │ ├── Derived │ │ │ └── InfoPlists │ │ │ │ ├── RemainsDomainInterface-Info.plist │ │ │ │ ├── RemainsDomainTesting-Info.plist │ │ │ │ └── RemainsDomainTests-Info.plist │ │ ├── Interface │ │ │ ├── DTO │ │ │ │ ├── DataTransfer │ │ │ │ │ ├── FetchListRemainAppItemsDataTransfer.swift │ │ │ │ │ ├── FetchMyRemainApplicationItemsDataTransfer.swift │ │ │ │ │ └── FetchRemainsAvailableTimeDataTransfer.swift │ │ │ │ └── Response │ │ │ │ │ ├── FetchListRemainApplicationItemsResponseDTO.swift │ │ │ │ │ ├── FetchMyRemainApplicationItemsResponseDTO.swift │ │ │ │ │ ├── FetchRemainsAvailableTimeResponseDTO.swift │ │ │ │ │ └── RemainOptionResponseDTO.swift │ │ │ ├── DataSource │ │ │ │ └── RemoteRemainsDataSource.swift │ │ │ ├── Entity │ │ │ │ ├── MyRemainApplicationItemsEntity.swift │ │ │ │ ├── RemainApplicationListEntity.swift │ │ │ │ ├── RemainOptionEntity.swift │ │ │ │ └── RemainsAvailableTimeEntity.swift │ │ │ ├── Enum │ │ │ │ └── WeekType.swift │ │ │ ├── Error │ │ │ │ └── RemainsDomainError.swift │ │ │ ├── Repository │ │ │ │ └── RemainsRepository.swift │ │ │ └── UseCase │ │ │ │ ├── FetchMyRemainApplicationItemsUseCase.swift │ │ │ │ ├── FetchRemainApplicationListUseCase.swift │ │ │ │ ├── FetchRemainsAvailableTimeUseCase.swift │ │ │ │ └── RemainingApplicationsChangesUseCase.swift │ │ ├── Project.swift │ │ ├── Sources │ │ │ ├── API │ │ │ │ └── RemainsAPI.swift │ │ │ ├── DataSource │ │ │ │ └── RemoteRemainsDataSourceImpl.swift │ │ │ ├── Repository │ │ │ │ └── RemainsRepositoryImpl.swift │ │ │ └── UseCase │ │ │ │ ├── FetchMyRemainApplicationItemsUseCaseImpl.swift │ │ │ │ ├── FetchRemainAppListUseCaseImpl.swift │ │ │ │ ├── FetchRemainsAvailableTimeUseCaseImpl.swift │ │ │ │ └── RemainingApplicationsChangesUseCaseImpl.swift │ │ ├── Testing │ │ │ └── Testing.swift │ │ └── Tests │ │ │ └── RemainsDomainTest.swift │ ├── SchoolDomain │ │ ├── Derived │ │ │ └── InfoPlists │ │ │ │ ├── SchoolDomainInterface-Info.plist │ │ │ │ ├── SchoolDomainTesting-Info.plist │ │ │ │ └── SchoolDomainTests-Info.plist │ │ ├── Interface │ │ │ ├── DTO │ │ │ │ ├── DataTransfer │ │ │ │ │ ├── FetchSchoolListTransfer.swift │ │ │ │ │ └── SingleSchoolListTransfer.swift │ │ │ │ └── Response │ │ │ │ │ ├── CheckSchoolCodeResponseDTO.swift │ │ │ │ │ ├── CheckSchoolQuestionResponseDTO.swift │ │ │ │ │ ├── FetchSchoolListResponseDTO.swift │ │ │ │ │ └── SingleSchoolResponseDTO.swift │ │ │ ├── DataSource │ │ │ │ └── RemoteSchoolDataSource.swift │ │ │ ├── Entity │ │ │ │ └── SchoolEntity.swift │ │ │ ├── Error │ │ │ │ └── SchoolDomainError.swift │ │ │ ├── Repository │ │ │ │ └── SchoolRepository.swift │ │ │ └── UseCase │ │ │ │ ├── CheckSchoolCodeUseCase.swift │ │ │ │ ├── CheckSchoolQuestionUseCase.swift │ │ │ │ ├── FetchSchoolListUseCase.swift │ │ │ │ └── GetSchoolQuestionUseCase.swift │ │ ├── Project.swift │ │ ├── Sources │ │ │ ├── API │ │ │ │ └── SchoolAPI.swift │ │ │ ├── DataSource │ │ │ │ └── RemoteSchoolDataSourceImpl.swift │ │ │ ├── Repository │ │ │ │ └── SchoolRepositoryImpl.swift │ │ │ └── UseCase │ │ │ │ ├── CheckSchoolCodeUseCaseImpl..swift │ │ │ │ ├── CheckSchoolQuestionUseCaseImpl.swift │ │ │ │ ├── FetchSchoolListUseCaseImpl.swift │ │ │ │ └── FetchSchoolQuestionUseCaseImpl.swift │ │ ├── Testing │ │ │ ├── RemoteSchoolDataSourceStub.swift │ │ │ ├── SchoolRepositoryStub.swift │ │ │ └── Testing.swift │ │ └── Tests │ │ │ └── SchoolDomainTest.swift │ ├── StudentsDomain │ │ ├── Derived │ │ │ └── InfoPlists │ │ │ │ ├── StudentsDomainInterface-Info.plist │ │ │ │ ├── StudentsDomainTesting-Info.plist │ │ │ │ └── StudentsDomainTests-Info.plist │ │ ├── Interface │ │ │ ├── DTO │ │ │ │ ├── DataTransfer │ │ │ │ │ ├── FetchAllStudentTransfer.swift │ │ │ │ │ ├── FetchMyProfileTransfer.swift │ │ │ │ │ └── SignupDmsFeaturesDataTransfer.swift │ │ │ │ ├── Request │ │ │ │ │ ├── CheckExistGradeClassNumberRequestDTO.swift │ │ │ │ │ ├── FindIDRequestDTO.swift │ │ │ │ │ ├── RenewalPasswordRequestDTO.swift │ │ │ │ │ └── SignupRequestDTO.swift │ │ │ │ └── Response │ │ │ │ │ ├── CheckExistGradeClassNumberResponseDTO.swift │ │ │ │ │ ├── FetchAllStudentResponseDTO.swift │ │ │ │ │ ├── FetchMyProfileResponseDTO.swift │ │ │ │ │ ├── FindIDResponseDTO.swift │ │ │ │ │ ├── SignupResponseDTO.swift │ │ │ │ │ └── StudentResponseDTO.swift │ │ │ ├── DataSource │ │ │ │ └── RemoteStudentsDataSource.swift │ │ │ ├── Entity │ │ │ │ ├── MyProfileEntity.swift │ │ │ │ ├── SignupDmsFeatures.swift │ │ │ │ └── StudentEntity.swift │ │ │ ├── Error │ │ │ │ └── StudentsDomainError.swift │ │ │ ├── Repository │ │ │ │ └── StudentsRepository.swift │ │ │ └── UseCase │ │ │ │ ├── ChangeProfileImageUseCase.swift │ │ │ │ ├── CheckDuplicateAccountIDUseCase.swift │ │ │ │ ├── CheckDuplicateEmailUseCase.swift │ │ │ │ ├── CheckExistGradeClassNumberUseCase.swift │ │ │ │ ├── FetchAllStudentUseCase.swift │ │ │ │ ├── FetchMyProfileUseCase.swift │ │ │ │ ├── FindIDUseCase.swift │ │ │ │ ├── RenewalPasswordUseCase.swift │ │ │ │ ├── SignupUseCase.swift │ │ │ │ └── WithdrawalUseCase.swift │ │ ├── Project.swift │ │ ├── Sources │ │ │ ├── API │ │ │ │ └── StudentsAPI.swift │ │ │ ├── DataSource │ │ │ │ └── RemoteStudentsDataSourceImpl.swift │ │ │ ├── Repository │ │ │ │ └── StudentsRepositoryImpl.swift │ │ │ └── UseCase │ │ │ │ ├── ChangeProfileImageUseCase.swift │ │ │ │ ├── CheckDuplicateAccountIDUseCaseImpl.swift │ │ │ │ ├── CheckDuplicateEmailUseCaseImpl.swift │ │ │ │ ├── CheckExistGradeClassNumberUseCaseImpl.swift │ │ │ │ ├── FetchAllStudentUseCaseImpl.swift │ │ │ │ ├── FetchMyProfileUseCaseImpl.swift │ │ │ │ ├── FindIDUseCaseImpl.swift │ │ │ │ ├── RenewalPasswordUseCaseImpl.swift │ │ │ │ ├── SignupUseCaseImpl.swift │ │ │ │ └── WithdrawalUseCaseImpl.swift │ │ ├── Testing │ │ │ ├── RemoteStudentsDataSourceStub.swift │ │ │ ├── SignupUseCaseFake.swift │ │ │ ├── StudentsRepositoryStub.swift │ │ │ └── Testing.swift │ │ └── Tests │ │ │ └── StudentsDomainTest.swift │ ├── StudyRoomsDomain │ │ ├── Derived │ │ │ └── InfoPlists │ │ │ │ ├── StudyRoomsDomainInterface-Info.plist │ │ │ │ ├── StudyRoomsDomainTesting-Info.plist │ │ │ │ └── StudyRoomsDomainTests-Info.plist │ │ ├── Interface │ │ │ ├── DTO │ │ │ │ ├── DataTransfer │ │ │ │ │ ├── FehtchMyStudyRoomApplicationItemsDataTransfer.swift │ │ │ │ │ ├── FetchDetailStudyRoomDataTransfer.swift │ │ │ │ │ ├── FetchSeatTypesDataTransfer.swift │ │ │ │ │ ├── FetchStudyAvailableTimeDataTransfer.swift │ │ │ │ │ ├── FetchStudyRoomListDataTransfer.swift │ │ │ │ │ └── FetchStudyroomTimeListDataTransfer.swift │ │ │ │ └── Response │ │ │ │ │ ├── FetchDetailStudyRoomResponseDTO.swift │ │ │ │ │ ├── FetchSeatTypesResponseDTO.swift │ │ │ │ │ ├── FetchStudyAvailableTimeResponseDTO.swift │ │ │ │ │ ├── FetchStudyRoomListResponDTO.swift │ │ │ │ │ ├── FetchStudyRoomTimeListResponseDTO.swift │ │ │ │ │ ├── MyStudyRoomApplicationItemsDTO.swift │ │ │ │ │ ├── SeatResponseDTO.swift │ │ │ │ │ ├── SeatStudentResponseDTO.swift │ │ │ │ │ ├── SingleSeatTypeResponseDTO.swift │ │ │ │ │ ├── SingleStudyRoomResponseDTO.swift │ │ │ │ │ └── TimeSlotsResponseDTO.swift │ │ │ ├── DataSource │ │ │ │ └── RemoteStudyRoomsDataSource.swift │ │ │ ├── Entity │ │ │ │ ├── DetailStudyRoomEntity.swift │ │ │ │ ├── MyStudyRoomAppItemsEntity.swift │ │ │ │ ├── PresignedURLEntity.swift │ │ │ │ ├── SeatEntity.swift │ │ │ │ ├── SeatStudentEntity.swift │ │ │ │ ├── SeatTypeEntity.swift │ │ │ │ ├── StudyAvailableTimeEntity.swift │ │ │ │ ├── StudyRoomEntity.swift │ │ │ │ ├── StudyroomTimeListEntity.swift │ │ │ │ └── TimeSlotsEntity.swift │ │ │ ├── Enum │ │ │ │ ├── AvailableSexType.swift │ │ │ │ └── SeatStatusType.swift │ │ │ ├── Error │ │ │ │ └── StudyRoomsDomainError.swift │ │ │ ├── Repository │ │ │ │ └── StudyRoomsRepository.swift │ │ │ └── UseCase │ │ │ │ ├── ApplyStudyRoomSeatUseCase.swift │ │ │ │ ├── CancelStudyRoomSeatUseCase.swift │ │ │ │ ├── FetchDetailStudyRoomUseCase.swift │ │ │ │ ├── FetchMyStudyRoomAppItemsUseCase.swift │ │ │ │ ├── FetchSeatTypesUseCase.swift │ │ │ │ ├── FetchStudyAvailableTimeUseCase.swift │ │ │ │ ├── FetchStudyRoomListUseCase.swift │ │ │ │ └── FetchStudyroomTimeListUseCase.swift │ │ ├── Project.swift │ │ ├── Sources │ │ │ ├── API │ │ │ │ └── StudyRoomsAPI.swift │ │ │ ├── DataSource │ │ │ │ └── RemoteStudyRoomsDataSourceImpl.swift │ │ │ ├── Repository │ │ │ │ └── StudyRoomsRepositoryImpl.swift │ │ │ └── UseCase │ │ │ │ ├── ApplyStudyRoomSeatUseCaseImpl.swift │ │ │ │ ├── CancelStudyRoomSeatUseCaseImpl.swift │ │ │ │ ├── FehtchMyStudyRoomAppItemsUserCaseImpl.swift │ │ │ │ ├── FetchDetailStudyRoomUseCaseImpl.swift │ │ │ │ ├── FetchSeatTypesUseCaseImpl.swift │ │ │ │ ├── FetchStudyAvailableTimeUseCaseImpl.swift │ │ │ │ ├── FetchStudyRoomListUseCaseImpl.swift │ │ │ │ └── FetchStudyroomTimeListUseCaseImpl.swift │ │ ├── Testing │ │ │ └── Testing.swift │ │ └── Tests │ │ │ └── StudyRoomsDomainTest.swift │ └── UsersDomain │ │ ├── Derived │ │ └── InfoPlists │ │ │ ├── UsersDomainInterface-Info.plist │ │ │ ├── UsersDomainTesting-Info.plist │ │ │ └── UsersDomainTests-Info.plist │ │ ├── Interface │ │ ├── DTO │ │ │ └── Request │ │ │ │ └── ChangePasswordRequestDTO.swift │ │ ├── DataSource │ │ │ └── RemoteUsersDataSource.swift │ │ ├── Error │ │ │ └── UsersDomainError.swift │ │ ├── Repository │ │ │ └── UsersRepository.swift │ │ └── UseCase │ │ │ ├── ChangePasswordUseCase.swift │ │ │ └── CompareCurrentPasswordUseCase.swift │ │ ├── Project.swift │ │ ├── Sources │ │ ├── API │ │ │ └── UsersAPI.swift │ │ ├── DataSource │ │ │ └── RemoteUsersDataSourceImpl.swift │ │ ├── Repository │ │ │ └── UsersRepositoryImpl.swift │ │ └── UseCase │ │ │ ├── ChangePasswordUseCaseImpl.swift │ │ │ └── CompareCurrentPasswordUseCase.swift │ │ ├── Testing │ │ ├── RemoteUsersDataSourceStub.swift │ │ ├── Testing.swift │ │ └── UsersRepositoryStub.swift │ │ └── Tests │ │ └── UsersDomainTest.swift ├── Feature │ ├── ApplyFeature │ │ ├── Derived │ │ │ └── InfoPlists │ │ │ │ ├── ApplyFeatureInterface-Info.plist │ │ │ │ └── ApplyFeatureTests-Info.plist │ │ ├── Interface │ │ │ └── ApplyPageFactory.swift │ │ ├── Project.swift │ │ ├── Sources │ │ │ └── ApplyPage │ │ │ │ ├── ApplyPageComponent.swift │ │ │ │ ├── ApplyPageView.swift │ │ │ │ ├── ApplyPageViewModel.swift │ │ │ │ └── Component │ │ │ │ └── ApplyListCellView.swift │ │ └── Tests │ │ │ └── TargetTests.swift │ ├── BaseFeature │ │ ├── Derived │ │ │ └── InfoPlists │ │ │ │ ├── BaseFeature-Info.plist │ │ │ │ └── BaseFeatureTests-Info.plist │ │ ├── Project.swift │ │ ├── Sources │ │ │ ├── AppState.swift │ │ │ ├── BaseViewModel.swift │ │ │ ├── DMSSelectionTab.swift │ │ │ ├── EnvironmentValues │ │ │ │ └── RootPresentationMode.swift │ │ │ ├── HideKeyboard.swift │ │ │ ├── SceneFlow.swift │ │ │ ├── TabFlow.swift │ │ │ └── TabbarHidden.swift │ │ └── Tests │ │ │ ├── .gitkeep │ │ │ └── TargetTest.swift │ ├── FindIDFeature │ │ ├── Derived │ │ │ └── InfoPlists │ │ │ │ ├── FindIDFeatureInterface-Info.plist │ │ │ │ └── FindIDFeatureTests-Info.plist │ │ ├── Interface │ │ │ └── FindIDFactory.swift │ │ ├── Project.swift │ │ ├── Sources │ │ │ ├── Component │ │ │ │ └── SchoolSelectButtonView.swift │ │ │ ├── FindIDComponent.swift │ │ │ ├── FindIDView.swift │ │ │ └── FindIDViewModel.swift │ │ └── Tests │ │ │ └── TargetTests.swift │ ├── HomeFeature │ │ ├── Derived │ │ │ └── InfoPlists │ │ │ │ ├── HomeFeatureInterface-Info.plist │ │ │ │ └── HomeFeatureTests-Info.plist │ │ ├── Interface │ │ │ └── HomeFactory.swift │ │ ├── Project.swift │ │ ├── Sources │ │ │ ├── Component │ │ │ │ ├── CalendarSheetModel.swift │ │ │ │ ├── CalendarSheetView.swift │ │ │ │ ├── MealCarouselView.swift │ │ │ │ └── NoticeView.swift │ │ │ ├── HomeComponent.swift │ │ │ ├── HomeView.swift │ │ │ └── HomeViewModel.swift │ │ └── Tests │ │ │ └── TargetTests.swift │ ├── MainTabFeature │ │ ├── Derived │ │ │ └── InfoPlists │ │ │ │ ├── MainTabFeatureInterface-Info.plist │ │ │ │ └── MainTabFeatureTests-Info.plist │ │ ├── Interface │ │ │ └── MainTabFactory.swift │ │ ├── Project.swift │ │ ├── Sources │ │ │ ├── MainTabComponent.swift │ │ │ └── MainTabView.swift │ │ └── Tests │ │ │ └── TargetTests.swift │ ├── MyPageFeature │ │ ├── Derived │ │ │ └── InfoPlists │ │ │ │ ├── MyPageFeatureInterface-Info.plist │ │ │ │ └── MyPageFeatureTests-Info.plist │ │ ├── Interface │ │ │ ├── ChangeProfileFactory.swift │ │ │ ├── CheckPasswordFactory.swift │ │ │ ├── ModifyPasswordFactory.swift │ │ │ ├── MyPageFactory.swift │ │ │ ├── RewardPointDetailFactory.swift │ │ │ └── SetNotificationFactory.swift │ │ ├── Project.swift │ │ ├── Sources │ │ │ ├── ChangeProfile │ │ │ │ ├── ChangeProfileComponent.swift │ │ │ │ ├── ChangeProfileView.swift │ │ │ │ └── ChangeProfileViewModel.swift │ │ │ ├── CheckPassword │ │ │ │ ├── CheckPasswordComponent.swift │ │ │ │ ├── CheckPasswordView.swift │ │ │ │ └── CheckPasswordViewModel.swift │ │ │ ├── ModifyPassword │ │ │ │ ├── ModifyPasswordComponent.swift │ │ │ │ ├── ModifyPasswordView.swift │ │ │ │ └── ModifyPasswordViewModel.swift │ │ │ ├── MyPage │ │ │ │ ├── Component │ │ │ │ │ ├── MyPageOptionBackground.swift │ │ │ │ │ └── RewardPointCardView.swift │ │ │ │ ├── MyPageComponent.swift │ │ │ │ ├── MyPageView.swift │ │ │ │ └── MyPageViewModel.swift │ │ │ ├── RewardPointDetail │ │ │ │ ├── RewardPointDetailComponent.swift │ │ │ │ ├── RewardPointDetailView.swift │ │ │ │ └── RewardPointDetailViewModel.swift │ │ │ └── SetNotification │ │ │ │ ├── SetNotificationComponent.swift │ │ │ │ ├── SetNotificationView.swift │ │ │ │ └── SetNotificationViewModel.swift │ │ └── Tests │ │ │ └── TargetTests.swift │ ├── NoticeFeature │ │ ├── Derived │ │ │ └── InfoPlists │ │ │ │ ├── NoticeFeatureInterface-Info.plist │ │ │ │ └── NoticeFeatureTests-Info.plist │ │ ├── Interface │ │ │ ├── NoticeDetailFactory.swift │ │ │ └── NoticeListFactory.swift │ │ ├── Project.swift │ │ ├── Sources │ │ │ ├── Detail │ │ │ │ ├── NoticeDetailComponent.swift │ │ │ │ ├── NoticeDetailView.swift │ │ │ │ └── NoticeDetailViewModel.swift │ │ │ └── NoticeList │ │ │ │ ├── NoticeListComponent.swift │ │ │ │ ├── NoticeListView.swift │ │ │ │ ├── NoticeListViewModel.swift │ │ │ │ └── NoticeOrderButton.swift │ │ └── Tests │ │ │ └── TargetTests.swift │ ├── OutingApplyFeature │ │ ├── Derived │ │ │ └── InfoPlists │ │ │ │ ├── OutingApplyFeatureInterface-Info.plist │ │ │ │ └── OutingApplyFeatureTests-Info.plist │ │ ├── Interface │ │ │ ├── OutingApplyFactory.swift │ │ │ └── OutingCheckFactory.swift │ │ ├── Project.swift │ │ ├── Sources │ │ │ ├── Component │ │ │ │ ├── OutingApplyNoticeView.swift │ │ │ │ ├── OutingSelectTimeModel.swift │ │ │ │ ├── OutingTextFieldView.swift │ │ │ │ ├── OutingTimePickerView.swift │ │ │ │ ├── RecentOutingApplyView.swift │ │ │ │ └── SelectStudentView.swift │ │ │ ├── OutingApplication │ │ │ │ ├── OutingApplyComponent.swift │ │ │ │ ├── OutingApplyView.swift │ │ │ │ └── OutingApplyViewModel.swift │ │ │ └── OutingCheck │ │ │ │ ├── OutingCheckComponent.swift │ │ │ │ ├── OutingCheckView.swift │ │ │ │ └── OutingCheckViewModel.swift │ │ └── Tests │ │ │ └── Project.swift │ ├── RemainApplyFeature │ │ ├── Derived │ │ │ └── InfoPlists │ │ │ │ ├── RemainApplyFeatureInterface-Info.plist │ │ │ │ └── RemainApplyFeatureTests-Info.plist │ │ ├── Interface │ │ │ └── RemainApplyFactory.swift │ │ ├── Project.swift │ │ ├── Sources │ │ │ ├── Component │ │ │ │ ├── RemainApplyListCellView.swift │ │ │ │ ├── RemainApplyListView.swift │ │ │ │ └── RemainApplyNoticeView.swift │ │ │ ├── RemainApplyComponent.swift │ │ │ ├── RemainApplyView.swift │ │ │ └── RemainApplyViewModel.swift │ │ └── Tests │ │ │ └── TargetTests.swift │ ├── RenewalPasswordFeature │ │ ├── Derived │ │ │ └── InfoPlists │ │ │ │ ├── RenewalPasswordFeatureInterface-Info.plist │ │ │ │ └── RenewalPasswordFeatureTests-Info.plist │ │ ├── Interface │ │ │ ├── Factory │ │ │ │ ├── AuthenticationEmailFactory.swift │ │ │ │ ├── ChangePasswordFactory.swift │ │ │ │ └── EnterInformationFactory.swift │ │ │ └── Param │ │ │ │ ├── AuthenticationEmailParam.swift │ │ │ │ └── ChangePasswordParm.swift │ │ ├── Project.swift │ │ ├── Sources │ │ │ ├── AuthenticationEmail │ │ │ │ ├── AuthenticationEmailComponent.swift │ │ │ │ ├── AuthenticationEmailView.swift │ │ │ │ └── AuthenticationEmailViewModel.swift │ │ │ ├── ChangePassword │ │ │ │ ├── ChangePasswordComponent.swift │ │ │ │ ├── ChangePasswordView.swift │ │ │ │ └── ChangePasswordViewModel.swift │ │ │ └── EnterInformation │ │ │ │ ├── Component │ │ │ │ └── BlockEmailView.swift │ │ │ │ ├── EnterInformationComponent.swift │ │ │ │ ├── EnterInformationView.swift │ │ │ │ └── EnterInformationViewModel.swift │ │ └── Tests │ │ │ └── TargetTests.swift │ ├── RootFeature │ │ ├── Project.swift │ │ ├── Sources │ │ │ ├── RootComponent.swift │ │ │ └── RootView.swift │ │ └── Tests │ │ │ ├── .gitkeep │ │ │ └── TargetTest.swift │ ├── SigninFeature │ │ ├── Derived │ │ │ └── InfoPlists │ │ │ │ ├── SigninFeatureInterface-Info.plist │ │ │ │ └── SigninFeatureTests-Info.plist │ │ ├── Interface │ │ │ └── SigninFactory.swift │ │ ├── Project.swift │ │ ├── Sources │ │ │ ├── SigninComponent.swift │ │ │ ├── SigninView.swift │ │ │ └── SigninViewModel.swift │ │ └── Tests │ │ │ └── SigninViewModelSpec.swift │ ├── SignupFeature │ │ ├── Derived │ │ │ └── InfoPlists │ │ │ │ ├── SignupFeatureInterface-Info.plist │ │ │ │ └── SignupFeatureTests-Info.plist │ │ ├── Interface │ │ │ ├── Factory │ │ │ │ ├── IDSettingFactory.swift │ │ │ │ ├── SchoolCodeFactory.swift │ │ │ │ ├── SchoolConfirmationQuestionsFactory.swift │ │ │ │ ├── SignupEmailAuthCodeVerifyFactory.swift │ │ │ │ ├── SignupEmailVerifyFactory.swift │ │ │ │ ├── SignupPasswordFactory.swift │ │ │ │ ├── SignupProfileImageFactory.swift │ │ │ │ └── SignupTermsFactory.swift │ │ │ └── Param │ │ │ │ ├── IDSettingParam.swift │ │ │ │ ├── SchoolConfirmationQuestionsParam.swift │ │ │ │ ├── SignupEmailAuthCodeVerifyParam.swift │ │ │ │ ├── SignupEmailVerifyParam.swift │ │ │ │ ├── SignupPasswordParam.swift │ │ │ │ ├── SignupProfileImageParam.swift │ │ │ │ └── SignupTermsParam.swift │ │ ├── Project.swift │ │ ├── Sources │ │ │ ├── IDSetting │ │ │ │ ├── IDSettingComponent.swift │ │ │ │ ├── IDSettingView.swift │ │ │ │ └── IDSettingViewModel.swift │ │ │ ├── SchoolCode │ │ │ │ ├── SchoolCodeComponent.swift │ │ │ │ ├── SchoolCodeView.swift │ │ │ │ └── SchoolCodeViewModel.swift │ │ │ ├── SchoolConfirmationQuestions │ │ │ │ ├── SchoolConfirmationQuestionsComponent.swift │ │ │ │ ├── SchoolConfirmationQuestionsView.swift │ │ │ │ └── SchoolConfirmationQuestionsViewModel.swift │ │ │ ├── SignupEmailAuthCodeVerify │ │ │ │ ├── EmailAuthCodeVerifyComponent.swift │ │ │ │ ├── EmailAuthCodeVerifyView.swift │ │ │ │ └── EmailAuthCodeVerifyViewModel.swift │ │ │ ├── SignupEmailVerify │ │ │ │ ├── SignupEmailVerifyComponent.swift │ │ │ │ ├── SignupEmailVerifyView.swift │ │ │ │ └── SignupEmailVerifyViewModel.swift │ │ │ ├── SignupPassword │ │ │ │ ├── SignupPasswordComponent.swift │ │ │ │ ├── SignupPasswordView.swift │ │ │ │ └── SignupPasswordViewModel.swift │ │ │ ├── SignupProfileImage │ │ │ │ ├── SignupProfileImageComponent.swift │ │ │ │ ├── SignupProfileImageView.swift │ │ │ │ └── SignupProfileImageViewModel.swift │ │ │ └── SignupTerms │ │ │ │ ├── SignupTermsComponent.swift │ │ │ │ ├── SignupTermsView.swift │ │ │ │ └── SignupTermsViewModel.swift │ │ └── Tests │ │ │ └── TargetTests.swift │ ├── SplashFeature │ │ ├── Derived │ │ │ └── InfoPlists │ │ │ │ ├── SplashFeatureInterface-Info.plist │ │ │ │ └── SplashFeatureTests-Info.plist │ │ ├── Interface │ │ │ └── SplashFactory.swift │ │ ├── Project.swift │ │ ├── Sources │ │ │ ├── SplashComponent.swift │ │ │ ├── SplashView.swift │ │ │ └── SplashViewModel.swift │ │ └── Tests │ │ │ └── TargetTests.swift │ └── StudyRoomFeature │ │ ├── Derived │ │ └── InfoPlists │ │ │ ├── StudyRoomFeatureInterface-Info.plist │ │ │ └── StudyRoomFeatureTests-Info.plist │ │ ├── Interface │ │ ├── Factory │ │ │ ├── StudyRoomDetailFActory.swift │ │ │ └── StudyRoomListFactory.swift │ │ └── Param │ │ │ └── StudyRoomParam.swift │ │ ├── Project.swift │ │ ├── Sources │ │ ├── Component │ │ │ ├── StudyRoomListCellView.swift │ │ │ └── StudyRoomNoticeView.swift │ │ ├── StudyRoomDetail │ │ │ ├── Component │ │ │ │ ├── Seat │ │ │ │ │ ├── DMSSeatButton.swift │ │ │ │ │ └── DMSSeatButtonStyle.swift │ │ │ │ ├── StudyRoomSeatDetailView.swift │ │ │ │ ├── StudyRoomSeatTypeView.swift │ │ │ │ └── StudyRoomSeatView.swift │ │ │ ├── StudyRoomDetailComponent.swift │ │ │ ├── StudyRoomDetailView.swift │ │ │ └── StudyRoomDetailViewModel.swift │ │ └── StudyroomApplication │ │ │ ├── StudyRoomListComponent.swift │ │ │ ├── StudyRoomListView.swift │ │ │ ├── StudyRoomListViewModel.swift │ │ │ └── StudyroomTimeList │ │ │ ├── StudyroomTimeListCellView.swift │ │ │ └── StudyroomTimeListView.swift │ │ └── Tests │ │ └── TargetTests.swift └── Shared │ ├── DesignSystem │ ├── Derived │ │ ├── InfoPlists │ │ │ └── DesignSystem-Info.plist │ │ └── Sources │ │ │ ├── TuistAssets+DesignSystem.swift │ │ │ ├── TuistBundle+DesignSystem.swift │ │ │ └── TuistFonts+DesignSystem.swift │ ├── Project.swift │ ├── Resources │ │ ├── ErrorColor.xcassets │ │ │ ├── Contents.json │ │ │ ├── Error Darken-1.colorset │ │ │ │ └── Contents.json │ │ │ ├── Error Darken-2.colorset │ │ │ │ └── Contents.json │ │ │ ├── Error Lighten-1.colorset │ │ │ │ └── Contents.json │ │ │ ├── Error Lighten-2.colorset │ │ │ │ └── Contents.json │ │ │ └── Error.colorset │ │ │ │ └── Contents.json │ │ ├── Fonts │ │ │ └── NotoSansKR │ │ │ │ ├── NotoSansKR-Black.otf │ │ │ │ ├── NotoSansKR-Bold.otf │ │ │ │ ├── NotoSansKR-Light.otf │ │ │ │ ├── NotoSansKR-Medium.otf │ │ │ │ ├── NotoSansKR-Regular.otf │ │ │ │ └── NotoSansKR-Thin.otf │ │ ├── GrayColor.xcassets │ │ │ ├── Contents.json │ │ │ ├── Gray 1.colorset │ │ │ │ └── Contents.json │ │ │ ├── Gray 10.colorset │ │ │ │ └── Contents.json │ │ │ ├── Gray 2.colorset │ │ │ │ └── Contents.json │ │ │ ├── Gray 3.colorset │ │ │ │ └── Contents.json │ │ │ ├── Gray 4.colorset │ │ │ │ └── Contents.json │ │ │ ├── Gray 5.colorset │ │ │ │ └── Contents.json │ │ │ ├── Gray 6.colorset │ │ │ │ └── Contents.json │ │ │ ├── Gray 7.colorset │ │ │ │ └── Contents.json │ │ │ ├── Gray 8.colorset │ │ │ │ └── Contents.json │ │ │ └── Gray 9.colorset │ │ │ │ └── Contents.json │ │ ├── Icons.xcassets │ │ │ ├── Contents.json │ │ │ ├── DMSHorizontal.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── LOGO - HORIZONTAL 1.png │ │ │ │ ├── LOGO - HORIZONTAL.png │ │ │ │ ├── LOGO - HORIZONTAL@2x 1.png │ │ │ │ ├── LOGO - HORIZONTAL@2x.png │ │ │ │ ├── LOGO - HORIZONTAL@3x 1.png │ │ │ │ └── LOGO - HORIZONTAL@3x.png │ │ │ └── pencil.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── pencil 1.svg │ │ │ │ ├── pencil 2.svg │ │ │ │ └── pencil.svg │ │ ├── PrimaryColor.xcassets │ │ │ ├── Contents.json │ │ │ ├── Darken-1.colorset │ │ │ │ └── Contents.json │ │ │ ├── Darken-2.colorset │ │ │ │ └── Contents.json │ │ │ ├── Lighten-1.colorset │ │ │ │ └── Contents.json │ │ │ ├── Lighten-2.colorset │ │ │ │ └── Contents.json │ │ │ └── Primary.colorset │ │ │ │ └── Contents.json │ │ └── SystemColor.xcassets │ │ │ ├── Background.colorset │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ ├── Error Container.colorset │ │ │ └── Contents.json │ │ │ ├── Icon.colorset │ │ │ └── Contents.json │ │ │ ├── Line.colorset │ │ │ └── Contents.json │ │ │ ├── On Background Variant Etc.colorset │ │ │ └── Contents.json │ │ │ ├── On Background Variant Text.colorset │ │ │ └── Contents.json │ │ │ ├── On Background.colorset │ │ │ └── Contents.json │ │ │ ├── On Error Container.colorset │ │ │ └── Contents.json │ │ │ ├── On Error.colorset │ │ │ └── Contents.json │ │ │ ├── On Primary Container.colorset │ │ │ └── Contents.json │ │ │ ├── On Primary.colorset │ │ │ └── Contents.json │ │ │ ├── On Surface Variant Etc.colorset │ │ │ └── Contents.json │ │ │ ├── On Surface Variant Text.colorset │ │ │ └── Contents.json │ │ │ ├── On Surface.colorset │ │ │ └── Contents.json │ │ │ ├── Primary Container.colorset │ │ │ └── Contents.json │ │ │ └── Surface.colorset │ │ │ └── Contents.json │ ├── Sources │ │ ├── ActionSheet │ │ │ └── DMSActionSheet.swift │ │ ├── BottomSheet │ │ │ └── DMSBottomSheet.swift │ │ ├── Button │ │ │ ├── Default │ │ │ │ ├── DMSButton.swift │ │ │ │ └── DMSButtonStyle.swift │ │ │ └── Wide │ │ │ │ ├── DMSWideButton.swift │ │ │ │ └── DMSWideButtonStyle.swift │ │ ├── CameraPicker │ │ │ └── CameraPicker.swift │ │ ├── Carousel │ │ │ ├── Carousel.swift │ │ │ ├── CarouselCanvas.swift │ │ │ └── UIStateModel.swift │ │ ├── CheckBox │ │ │ ├── DMSCheckBox.swift │ │ │ └── DMSCheckBoxStyle.swift │ │ ├── Color │ │ │ ├── Color+DeisgnSystemsColor.swift │ │ │ ├── DMSErrorColor.swift │ │ │ ├── DMSGrayScaleColor.swift │ │ │ ├── DMSPrimaryColor.swift │ │ │ └── DMSSystemColor.swift │ │ ├── Component │ │ │ └── Common │ │ │ │ └── DMSHeaderView.swift │ │ ├── Extensions │ │ │ ├── View+cornerRadius.swift │ │ │ ├── View+dmsBackButton.swift │ │ │ ├── View+dmsBackground.swift │ │ │ ├── View+if.swift │ │ │ ├── View+navigate.swift │ │ │ └── View+shadow.swift │ │ ├── Image │ │ │ └── DMSImage.swift │ │ ├── ImagePicker │ │ │ └── ImagePicker.swift │ │ ├── PassCode │ │ │ └── DMSPassCodeView.swift │ │ ├── Playground │ │ │ ├── DesignSystemPlaygroundView.swift │ │ │ └── Views │ │ │ │ ├── ButtonPlaygroundView.swift │ │ │ │ ├── CheckboxPlaygroundView.swift │ │ │ │ ├── ColorPlaygroundView.swift │ │ │ │ ├── FontPlaygroundView.swift │ │ │ │ ├── RadiobuttonPlaygroundView.swift │ │ │ │ ├── SwitchPlaygroundView.swift │ │ │ │ ├── TextFieldPlaygroundView.swift │ │ │ │ └── ToastPlaygroundView.swift │ │ ├── Progress │ │ │ └── DMSProgress.swift │ │ ├── RadioButton │ │ │ └── DMSRadioButton.swift │ │ ├── Shadow │ │ │ ├── DMSShadow.swift │ │ │ └── DMSShadowStyle.swift │ │ ├── Switch │ │ │ └── DMSSwitch.swift │ │ ├── TextField │ │ │ ├── Floating │ │ │ │ ├── DMSFloatingTextField.swift │ │ │ │ └── SecureDMSFloatingTextField.swift │ │ │ └── Form │ │ │ │ ├── DMSFormTextEditor.swift │ │ │ │ └── DMSFormTextField.swift │ │ ├── Toast │ │ │ ├── DmsToast.swift │ │ │ └── DmsToastStyle.swift │ │ ├── Typography │ │ │ ├── DMSFont.swift │ │ │ └── DMSFontStyle.swift │ │ └── WebView │ │ │ └── DMSWebView.swift │ └── Tests │ │ ├── .gitkeep │ │ └── TargetTest.swift │ ├── GlobalThirdPartyLibrary │ ├── Derived │ │ └── InfoPlists │ │ │ └── GlobalThirdPartyLibrary-Info.plist │ ├── Project.swift │ └── Sources │ │ └── ThirdPartyLibrary.swift │ ├── UtilityModule │ ├── Derived │ │ └── InfoPlists │ │ │ ├── UtilityModule-Info.plist │ │ │ └── UtilityModuleTests-Info.plist │ ├── Project.swift │ ├── Sources │ │ ├── DateUtil.swift │ │ ├── GenerateSkeletonDummy.swift │ │ ├── HexColor.swift │ │ ├── HideTabbar.swift │ │ ├── NavigationUtil.swift │ │ ├── RegexUtil.swift │ │ ├── ShakeUtil.swift │ │ └── ViewUtil.swift │ └── Tests │ │ ├── .gitkeep │ │ └── TargetTest.swift │ ├── WatchDesignSystem │ ├── Derived │ │ ├── InfoPlists │ │ │ └── WatchDesignSystem-Info.plist │ │ └── Sources │ │ │ ├── TuistAssets+WatchDesignSystem.swift │ │ │ ├── TuistBundle+WatchDesignSystem.swift │ │ │ └── TuistFonts+WatchDesignSystem.swift │ ├── Project.swift │ ├── Resources │ │ ├── ErrorColor.xcassets │ │ │ ├── Contents.json │ │ │ ├── Error Darken-1.colorset │ │ │ │ └── Contents.json │ │ │ ├── Error Darken-2.colorset │ │ │ │ └── Contents.json │ │ │ ├── Error Lighten-1.colorset │ │ │ │ └── Contents.json │ │ │ ├── Error Lighten-2.colorset │ │ │ │ └── Contents.json │ │ │ └── Error.colorset │ │ │ │ └── Contents.json │ │ ├── Fonts │ │ │ └── NotoSansKR │ │ │ │ ├── NotoSansKR-Black.otf │ │ │ │ ├── NotoSansKR-Bold.otf │ │ │ │ ├── NotoSansKR-Light.otf │ │ │ │ ├── NotoSansKR-Medium.otf │ │ │ │ ├── NotoSansKR-Regular.otf │ │ │ │ └── NotoSansKR-Thin.otf │ │ ├── GrayColor.xcassets │ │ │ ├── Contents.json │ │ │ ├── Gray 1.colorset │ │ │ │ └── Contents.json │ │ │ ├── Gray 10.colorset │ │ │ │ └── Contents.json │ │ │ ├── Gray 2.colorset │ │ │ │ └── Contents.json │ │ │ ├── Gray 3.colorset │ │ │ │ └── Contents.json │ │ │ ├── Gray 4.colorset │ │ │ │ └── Contents.json │ │ │ ├── Gray 5.colorset │ │ │ │ └── Contents.json │ │ │ ├── Gray 6.colorset │ │ │ │ └── Contents.json │ │ │ ├── Gray 7.colorset │ │ │ │ └── Contents.json │ │ │ ├── Gray 8.colorset │ │ │ │ └── Contents.json │ │ │ └── Gray 9.colorset │ │ │ │ └── Contents.json │ │ ├── Icons.xcassets │ │ │ ├── Contents.json │ │ │ ├── DMSHorizontal.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── LOGO - HORIZONTAL 1.png │ │ │ │ ├── LOGO - HORIZONTAL.png │ │ │ │ ├── LOGO - HORIZONTAL@2x 1.png │ │ │ │ ├── LOGO - HORIZONTAL@2x.png │ │ │ │ ├── LOGO - HORIZONTAL@3x 1.png │ │ │ │ └── LOGO - HORIZONTAL@3x.png │ │ │ └── pencil.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── pencil 1.svg │ │ │ │ ├── pencil 2.svg │ │ │ │ └── pencil.svg │ │ ├── PrimaryColor.xcassets │ │ │ ├── Contents.json │ │ │ ├── Darken-1.colorset │ │ │ │ └── Contents.json │ │ │ ├── Darken-2.colorset │ │ │ │ └── Contents.json │ │ │ ├── Lighten-1.colorset │ │ │ │ └── Contents.json │ │ │ ├── Lighten-2.colorset │ │ │ │ └── Contents.json │ │ │ └── Primary.colorset │ │ │ │ └── Contents.json │ │ └── SystemColor.xcassets │ │ │ ├── Background.colorset │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ ├── Error Container.colorset │ │ │ └── Contents.json │ │ │ ├── Icon.colorset │ │ │ └── Contents.json │ │ │ ├── Line.colorset │ │ │ └── Contents.json │ │ │ ├── On Background Variant Etc.colorset │ │ │ └── Contents.json │ │ │ ├── On Background Variant Text.colorset │ │ │ └── Contents.json │ │ │ ├── On Background.colorset │ │ │ └── Contents.json │ │ │ ├── On Error Container.colorset │ │ │ └── Contents.json │ │ │ ├── On Error.colorset │ │ │ └── Contents.json │ │ │ ├── On Primary Container.colorset │ │ │ └── Contents.json │ │ │ ├── On Primary.colorset │ │ │ └── Contents.json │ │ │ ├── On Surface Variant Etc.colorset │ │ │ └── Contents.json │ │ │ ├── On Surface Variant Text.colorset │ │ │ └── Contents.json │ │ │ ├── On Surface.colorset │ │ │ └── Contents.json │ │ │ ├── Primary Container.colorset │ │ │ └── Contents.json │ │ │ └── Surface.colorset │ │ │ └── Contents.json │ ├── Sources │ │ ├── Color │ │ │ ├── DMSErrorColor.swift │ │ │ ├── DMSGrayScaleColor.swift │ │ │ ├── DMSPrimaryColor.swift │ │ │ └── DMSSystemColor.swift │ │ └── Typography │ │ │ ├── DMSFont.swift │ │ │ └── DMSFontStyle.swift │ └── Tests │ │ ├── .gitkeep │ │ └── TargetTest.swift │ └── WatchRestAPIModule │ ├── Project.swift │ ├── Sources │ ├── Base │ │ ├── DMSAPI.swift │ │ ├── JwtAuthorizable.swift │ │ └── Plugin │ │ │ └── JwtPlugin.swift │ ├── Common │ │ ├── Error │ │ │ ├── DMSWatchError.swift │ │ │ └── GlobalDMSError.swift │ │ ├── JwtStore │ │ │ ├── JwtStore.swift │ │ │ └── JwtStoreImpl.swift │ │ ├── Remote │ │ │ └── RemoteAPIProviderImpl.swift │ │ └── Utils │ │ │ ├── Date │ │ │ └── DateExtension.swift │ │ │ └── Enum │ │ │ └── NoticeOrderType.swift │ ├── Meal │ │ ├── Data │ │ │ ├── API │ │ │ │ └── MealAPI.swift │ │ │ ├── Repository │ │ │ │ └── MealRepositoryImpl.swift │ │ │ └── Response │ │ │ │ └── FetchMealListResponseDTO.swift │ │ ├── DataSource │ │ │ └── Remote │ │ │ │ ├── RemoteMealDataSource.swift │ │ │ │ └── RemoteMealDataSourceImpl.swift │ │ └── Domain │ │ │ ├── Entity │ │ │ └── MealEntity.swift │ │ │ └── Repository │ │ │ └── MealRepository.swift │ └── Notice │ │ ├── API │ │ └── NoticeAPI.swift │ │ ├── Data │ │ ├── Repository │ │ │ └── NoticeRepositoryImpl.swift │ │ └── Response │ │ │ ├── FetchDetailNoticeResponseDTO.swift │ │ │ └── FetchNoticeListResponseDTO.swift │ │ ├── DataSource │ │ └── Remote │ │ │ ├── RemoteNoticeDataSource.swift │ │ │ └── RemoteNoticeDataSourceImpl.swift │ │ └── Domain │ │ ├── Entity │ │ ├── DetailNoticeEntity.swift │ │ └── NoticeEntity.swift │ │ └── Repository │ │ └── NoticeRepository.swift │ └── Tests │ └── TargetTest.swift ├── README.md ├── Scripts ├── GenerateFeature │ ├── Project.swift │ ├── Sources │ │ └── Feature.swift │ └── Tests │ │ ├── .gitkeep │ │ └── TargetTest.swift ├── GenerateModule.swift ├── GenerateModuleDemoSource │ └── Demo │ │ ├── Resources │ │ └── LaunchScreen.storyboard │ │ └── Sources │ │ └── AppDelegate.swift ├── GoogleServiceScript.sh ├── NeedleRunScript.sh ├── SwiftLintRunScript.sh ├── WatchNeedleRunScript.sh ├── WidgetNeedleScript.sh └── generate_new_feature.py ├── Tuist ├── Config.swift ├── Package.swift ├── ProjectDescriptionHelpers │ ├── Action+Template.swift │ ├── CodeSign.swift │ ├── Project+Template.swift │ ├── SourceFiles+Template.swift │ └── Workspace+Scheme.swift └── Templates │ ├── Demo │ ├── Demo.swift │ ├── DemoResources.stencil │ └── DemoSources.stencil │ ├── Interface │ ├── Interface.stencil │ └── Interface.swift │ ├── Module │ ├── Module.swift │ ├── Project.stencil │ └── Sources.stencil │ ├── Sources │ ├── Sources.stencil │ └── Sources.swift │ ├── Testing │ ├── Testing.stencil │ └── Testing.swift │ ├── Tests │ ├── Tests.stencil │ └── Tests.swift │ └── UITests │ ├── UITests.stencil │ └── UITests.swift ├── Workspace.swift ├── XCConfig └── Shared.xcconfig ├── ci_scripts └── ci_post_clone.sh └── graph.png /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @team-aliens/ios 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/.github/ISSUE_TEMPLATE/bug.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/do.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/.github/ISSUE_TEMPLATE/do.yml -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/.gitignore -------------------------------------------------------------------------------- /.mise.toml: -------------------------------------------------------------------------------- 1 | [tools] 2 | tuist = "4.23.0" -------------------------------------------------------------------------------- /.swiftlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/.swiftlint.yml -------------------------------------------------------------------------------- /.tuist-bin/ProjectDescription.framework/ProjectDescription: -------------------------------------------------------------------------------- 1 | Versions/Current/ProjectDescription -------------------------------------------------------------------------------- /.tuist-bin/ProjectDescription.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /.tuist-bin/ProjectDescription.framework/Versions/A/ProjectDescription: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/.tuist-bin/ProjectDescription.framework/Versions/A/ProjectDescription -------------------------------------------------------------------------------- /.tuist-bin/ProjectDescription.framework/Versions/A/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/.tuist-bin/ProjectDescription.framework/Versions/A/Resources/Info.plist -------------------------------------------------------------------------------- /.tuist-bin/ProjectDescription.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /.tuist-bin/Templates/AppProject.stencil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/.tuist-bin/Templates/AppProject.stencil -------------------------------------------------------------------------------- /.tuist-bin/Templates/AppTests.stencil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/.tuist-bin/Templates/AppTests.stencil -------------------------------------------------------------------------------- /.tuist-bin/Templates/Config.stencil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/.tuist-bin/Templates/Config.stencil -------------------------------------------------------------------------------- /.tuist-bin/Templates/Gitignore.stencil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/.tuist-bin/Templates/Gitignore.stencil -------------------------------------------------------------------------------- /.tuist-bin/Templates/KitSource.stencil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/.tuist-bin/Templates/KitSource.stencil -------------------------------------------------------------------------------- /.tuist-bin/Templates/KitTests.stencil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/.tuist-bin/Templates/KitTests.stencil -------------------------------------------------------------------------------- /.tuist-bin/Templates/LaunchScreen+iOS.stencil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/.tuist-bin/Templates/LaunchScreen+iOS.stencil -------------------------------------------------------------------------------- /.tuist-bin/Templates/LaunchScreen+macOS.stencil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/.tuist-bin/Templates/LaunchScreen+macOS.stencil -------------------------------------------------------------------------------- /.tuist-bin/Templates/LaunchScreen+tvOS.stencil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/.tuist-bin/Templates/LaunchScreen+tvOS.stencil -------------------------------------------------------------------------------- /.tuist-bin/Templates/LocalHelper.stencil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/.tuist-bin/Templates/LocalHelper.stencil -------------------------------------------------------------------------------- /.tuist-bin/Templates/Package.stencil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/.tuist-bin/Templates/Package.stencil -------------------------------------------------------------------------------- /.tuist-bin/Templates/Package.swift: -------------------------------------------------------------------------------- 1 | import PackageDescription 2 | -------------------------------------------------------------------------------- /.tuist-bin/Templates/Plugin.stencil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/.tuist-bin/Templates/Plugin.stencil -------------------------------------------------------------------------------- /.tuist-bin/Templates/Project+Templates.stencil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/.tuist-bin/Templates/Project+Templates.stencil -------------------------------------------------------------------------------- /.tuist-bin/Templates/UISource.stencil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/.tuist-bin/Templates/UISource.stencil -------------------------------------------------------------------------------- /.tuist-bin/Templates/UITests.stencil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/.tuist-bin/Templates/UITests.stencil -------------------------------------------------------------------------------- /.tuist-bin/Templates/default/AppDelegate.stencil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/.tuist-bin/Templates/default/AppDelegate.stencil -------------------------------------------------------------------------------- /.tuist-bin/Templates/default/default.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/.tuist-bin/Templates/default/default.swift -------------------------------------------------------------------------------- /.tuist-bin/Templates/main.stencil: -------------------------------------------------------------------------------- 1 | print("Hello, from your Tuist Task") -------------------------------------------------------------------------------- /.tuist-bin/Templates/swiftui/ContentView.stencil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/.tuist-bin/Templates/swiftui/ContentView.stencil -------------------------------------------------------------------------------- /.tuist-bin/Templates/swiftui/app.stencil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/.tuist-bin/Templates/swiftui/app.stencil -------------------------------------------------------------------------------- /.tuist-bin/Templates/swiftui/ios/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/.tuist-bin/Templates/swiftui/ios/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /.tuist-bin/Templates/swiftui/ios/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/.tuist-bin/Templates/swiftui/ios/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /.tuist-bin/Templates/swiftui/macos/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/.tuist-bin/Templates/swiftui/macos/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /.tuist-bin/Templates/swiftui/swiftui.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/.tuist-bin/Templates/swiftui/swiftui.swift -------------------------------------------------------------------------------- /.tuist-bin/Templates/swiftui/tvos/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/.tuist-bin/Templates/swiftui/tvos/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /.tuist-bin/libswift_Concurrency.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/.tuist-bin/libswift_Concurrency.dylib -------------------------------------------------------------------------------- /.tuist-bin/tuist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/.tuist-bin/tuist -------------------------------------------------------------------------------- /.tuist-bin/vendor/xcbeautify/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/.tuist-bin/vendor/xcbeautify/LICENSE -------------------------------------------------------------------------------- /.tuist-bin/vendor/xcbeautify/xcbeautify: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/.tuist-bin/vendor/xcbeautify/xcbeautify -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Makefile -------------------------------------------------------------------------------- /Plugin/ConfigurationPlugin/Plugin.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Plugin/ConfigurationPlugin/Plugin.swift -------------------------------------------------------------------------------- /Plugin/ConfigurationPlugin/ProjectDescriptionHelpers/Configuration+Ext.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Plugin/ConfigurationPlugin/ProjectDescriptionHelpers/Configuration+Ext.swift -------------------------------------------------------------------------------- /Plugin/ConfigurationPlugin/ProjectDescriptionHelpers/Path+XCConfig.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Plugin/ConfigurationPlugin/ProjectDescriptionHelpers/Path+XCConfig.swift -------------------------------------------------------------------------------- /Plugin/ConfigurationPlugin/ProjectDescriptionHelpers/ProjectDeployTarget.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Plugin/ConfigurationPlugin/ProjectDescriptionHelpers/ProjectDeployTarget.swift -------------------------------------------------------------------------------- /Plugin/DependencyPlugin/Plugin.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Plugin/DependencyPlugin/Plugin.swift -------------------------------------------------------------------------------- /Plugin/DependencyPlugin/ProjectDescriptionHelpers/Dependency+SPM.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Plugin/DependencyPlugin/ProjectDescriptionHelpers/Dependency+SPM.swift -------------------------------------------------------------------------------- /Plugin/DependencyPlugin/ProjectDescriptionHelpers/Dependency+Target.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Plugin/DependencyPlugin/ProjectDescriptionHelpers/Dependency+Target.swift -------------------------------------------------------------------------------- /Plugin/DependencyPlugin/ProjectDescriptionHelpers/ModulePaths.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Plugin/DependencyPlugin/ProjectDescriptionHelpers/ModulePaths.swift -------------------------------------------------------------------------------- /Plugin/DependencyPlugin/ProjectDescriptionHelpers/PathExtension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Plugin/DependencyPlugin/ProjectDescriptionHelpers/PathExtension.swift -------------------------------------------------------------------------------- /Plugin/EnvironmentPlugin/Plugin.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Plugin/EnvironmentPlugin/Plugin.swift -------------------------------------------------------------------------------- /Plugin/EnvironmentPlugin/ProjectDescriptionHelpers/ProjectEnvironment.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Plugin/EnvironmentPlugin/ProjectDescriptionHelpers/ProjectEnvironment.swift -------------------------------------------------------------------------------- /Projects/App/.swiftlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/App/.swiftlint.yml -------------------------------------------------------------------------------- /Projects/App/AppExtension/Resources/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/App/AppExtension/Resources/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Projects/App/AppExtension/Resources/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/App/AppExtension/Resources/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Projects/App/AppExtension/Sources/DI/Meal/WidgetComponent+Meal.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/App/AppExtension/Sources/DI/Meal/WidgetComponent+Meal.swift -------------------------------------------------------------------------------- /Projects/App/AppExtension/Sources/DI/NeedleGenerated.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/App/AppExtension/Sources/DI/NeedleGenerated.swift -------------------------------------------------------------------------------- /Projects/App/AppExtension/Sources/DI/Notice/WidgetComponent+Notice.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/App/AppExtension/Sources/DI/Notice/WidgetComponent+Notice.swift -------------------------------------------------------------------------------- /Projects/App/AppExtension/Sources/DI/Point/WidgetComponent+Point.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/App/AppExtension/Sources/DI/Point/WidgetComponent+Point.swift -------------------------------------------------------------------------------- /Projects/App/AppExtension/Sources/DI/WidgetComponent.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/App/AppExtension/Sources/DI/WidgetComponent.swift -------------------------------------------------------------------------------- /Projects/App/AppExtension/Sources/DMSWidget.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/App/AppExtension/Sources/DMSWidget.swift -------------------------------------------------------------------------------- /Projects/App/AppExtension/Sources/Meal/DMSMealComponent.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/App/AppExtension/Sources/Meal/DMSMealComponent.swift -------------------------------------------------------------------------------- /Projects/App/AppExtension/Sources/Meal/DMSMealWidget.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/App/AppExtension/Sources/Meal/DMSMealWidget.swift -------------------------------------------------------------------------------- /Projects/App/AppExtension/Sources/Meal/DMSMealWidgetEntryView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/App/AppExtension/Sources/Meal/DMSMealWidgetEntryView.swift -------------------------------------------------------------------------------- /Projects/App/AppExtension/Sources/Notice/DMSNoticeComponent.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/App/AppExtension/Sources/Notice/DMSNoticeComponent.swift -------------------------------------------------------------------------------- /Projects/App/AppExtension/Sources/Notice/DMSNoticeEntryView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/App/AppExtension/Sources/Notice/DMSNoticeEntryView.swift -------------------------------------------------------------------------------- /Projects/App/AppExtension/Sources/Notice/DMSNoticeWidget.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/App/AppExtension/Sources/Notice/DMSNoticeWidget.swift -------------------------------------------------------------------------------- /Projects/App/AppExtension/Sources/Point/DMSPointComponent.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/App/AppExtension/Sources/Point/DMSPointComponent.swift -------------------------------------------------------------------------------- /Projects/App/AppExtension/Sources/Point/DMSPointEntryView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/App/AppExtension/Sources/Point/DMSPointEntryView.swift -------------------------------------------------------------------------------- /Projects/App/AppExtension/Sources/Point/DMSPointIntent.intentdefinition: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/App/AppExtension/Sources/Point/DMSPointIntent.intentdefinition -------------------------------------------------------------------------------- /Projects/App/AppExtension/Sources/Point/DMSPointWidget.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/App/AppExtension/Sources/Point/DMSPointWidget.swift -------------------------------------------------------------------------------- /Projects/App/AppExtension/Sources/Point/DisplayPointPart.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/App/AppExtension/Sources/Point/DisplayPointPart.swift -------------------------------------------------------------------------------- /Projects/App/AppExtension/Support/DMS-AliensWidget.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/App/AppExtension/Support/DMS-AliensWidget.entitlements -------------------------------------------------------------------------------- /Projects/App/AppExtension/Support/Widget-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/App/AppExtension/Support/Widget-Info.plist -------------------------------------------------------------------------------- /Projects/App/Derived/Sources/TuistAssets+DMSAliens.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/App/Derived/Sources/TuistAssets+DMSAliens.swift -------------------------------------------------------------------------------- /Projects/App/Derived/Sources/TuistAssets+DMSAliensWatchApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/App/Derived/Sources/TuistAssets+DMSAliensWatchApp.swift -------------------------------------------------------------------------------- /Projects/App/Derived/Sources/TuistAssets+DMSAliensWidget.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/App/Derived/Sources/TuistAssets+DMSAliensWidget.swift -------------------------------------------------------------------------------- /Projects/App/Derived/Sources/TuistBundle+DMSAliens.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/App/Derived/Sources/TuistBundle+DMSAliens.swift -------------------------------------------------------------------------------- /Projects/App/Derived/Sources/TuistBundle+DMSAliensWatchApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/App/Derived/Sources/TuistBundle+DMSAliensWatchApp.swift -------------------------------------------------------------------------------- /Projects/App/Derived/Sources/TuistBundle+DMSAliensWidget.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/App/Derived/Sources/TuistBundle+DMSAliensWidget.swift -------------------------------------------------------------------------------- /Projects/App/Project.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/App/Project.swift -------------------------------------------------------------------------------- /Projects/App/Resources/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/App/Resources/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /Projects/App/Resources/Assets.xcassets/AppIcon.appiconset/AppIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/App/Resources/Assets.xcassets/AppIcon.appiconset/AppIcon.png -------------------------------------------------------------------------------- /Projects/App/Resources/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/App/Resources/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Projects/App/Resources/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/App/Resources/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Projects/App/Resources/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/App/Resources/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Projects/App/Sources/Application/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/App/Sources/Application/AppDelegate.swift -------------------------------------------------------------------------------- /Projects/App/Sources/Application/DI/AppComponent.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/App/Sources/Application/DI/AppComponent.swift -------------------------------------------------------------------------------- /Projects/App/Sources/Application/DI/Auth/AppComponent+Auth.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/App/Sources/Application/DI/Auth/AppComponent+Auth.swift -------------------------------------------------------------------------------- /Projects/App/Sources/Application/DI/Files/AppComponent+Files.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/App/Sources/Application/DI/Files/AppComponent+Files.swift -------------------------------------------------------------------------------- /Projects/App/Sources/Application/DI/Meal/AppComponent+Meal.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/App/Sources/Application/DI/Meal/AppComponent+Meal.swift -------------------------------------------------------------------------------- /Projects/App/Sources/Application/DI/Notice/AppComponent+Notice.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/App/Sources/Application/DI/Notice/AppComponent+Notice.swift -------------------------------------------------------------------------------- /Projects/App/Sources/Application/DI/Notification/AppComponent+Notification.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/App/Sources/Application/DI/Notification/AppComponent+Notification.swift -------------------------------------------------------------------------------- /Projects/App/Sources/Application/DI/Outing/AppComponent+Outing.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/App/Sources/Application/DI/Outing/AppComponent+Outing.swift -------------------------------------------------------------------------------- /Projects/App/Sources/Application/DI/Points/AppComponent+Points.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/App/Sources/Application/DI/Points/AppComponent+Points.swift -------------------------------------------------------------------------------- /Projects/App/Sources/Application/DI/Presigned/AppComponent+Presigned.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/App/Sources/Application/DI/Presigned/AppComponent+Presigned.swift -------------------------------------------------------------------------------- /Projects/App/Sources/Application/DI/Remains/AppComponent+Remains.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/App/Sources/Application/DI/Remains/AppComponent+Remains.swift -------------------------------------------------------------------------------- /Projects/App/Sources/Application/DI/School/AppComponent+School.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/App/Sources/Application/DI/School/AppComponent+School.swift -------------------------------------------------------------------------------- /Projects/App/Sources/Application/DI/Students/AppComponent+Students.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/App/Sources/Application/DI/Students/AppComponent+Students.swift -------------------------------------------------------------------------------- /Projects/App/Sources/Application/DI/StudyRooms/AppComponent+StudyRooms.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/App/Sources/Application/DI/StudyRooms/AppComponent+StudyRooms.swift -------------------------------------------------------------------------------- /Projects/App/Sources/Application/DI/Users/AppComponent+Users.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/App/Sources/Application/DI/Users/AppComponent+Users.swift -------------------------------------------------------------------------------- /Projects/App/Sources/Application/DMSApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/App/Sources/Application/DMSApp.swift -------------------------------------------------------------------------------- /Projects/App/Sources/Application/NeedleGenerated.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/App/Sources/Application/NeedleGenerated.swift -------------------------------------------------------------------------------- /Projects/App/Support/DMS-Aliens.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/App/Support/DMS-Aliens.entitlements -------------------------------------------------------------------------------- /Projects/App/Support/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/App/Support/Info.plist -------------------------------------------------------------------------------- /Projects/App/Tests/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Projects/App/Tests/Support/Tests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/App/Tests/Support/Tests-Info.plist -------------------------------------------------------------------------------- /Projects/App/Tests/TargetTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/App/Tests/TargetTest.swift -------------------------------------------------------------------------------- /Projects/App/WatchApp/Derived/Sources/TuistAssets+DMSAliensWatchExtension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/App/WatchApp/Derived/Sources/TuistAssets+DMSAliensWatchExtension.swift -------------------------------------------------------------------------------- /Projects/App/WatchApp/Derived/Sources/TuistBundle+DMSAliensWatchExtension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/App/WatchApp/Derived/Sources/TuistBundle+DMSAliensWatchExtension.swift -------------------------------------------------------------------------------- /Projects/App/WatchApp/Resources/Assets.xcassets/AppIcon.appiconset/AppIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/App/WatchApp/Resources/Assets.xcassets/AppIcon.appiconset/AppIcon.png -------------------------------------------------------------------------------- /Projects/App/WatchApp/Resources/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/App/WatchApp/Resources/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Projects/App/WatchApp/Resources/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/App/WatchApp/Resources/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Projects/App/WatchApp/Sources/App/DI/App/AppAssembly.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/App/WatchApp/Sources/App/DI/App/AppAssembly.swift -------------------------------------------------------------------------------- /Projects/App/WatchApp/Sources/App/DI/DetailNotice/DetailNoticeAssembly.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/App/WatchApp/Sources/App/DI/DetailNotice/DetailNoticeAssembly.swift -------------------------------------------------------------------------------- /Projects/App/WatchApp/Sources/App/DI/Main/MainAssembly.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/App/WatchApp/Sources/App/DI/Main/MainAssembly.swift -------------------------------------------------------------------------------- /Projects/App/WatchApp/Sources/App/DI/Meal/MealAssembly.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/App/WatchApp/Sources/App/DI/Meal/MealAssembly.swift -------------------------------------------------------------------------------- /Projects/App/WatchApp/Sources/App/DI/Notice/NoticeAssembly.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/App/WatchApp/Sources/App/DI/Notice/NoticeAssembly.swift -------------------------------------------------------------------------------- /Projects/App/WatchApp/Sources/App/DMSWatchApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/App/WatchApp/Sources/App/DMSWatchApp.swift -------------------------------------------------------------------------------- /Projects/App/WatchApp/Sources/App/WatchSessionManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/App/WatchApp/Sources/App/WatchSessionManager.swift -------------------------------------------------------------------------------- /Projects/App/WatchApp/Sources/Presentation/Main/Enum/MainTab.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/App/WatchApp/Sources/Presentation/Main/Enum/MainTab.swift -------------------------------------------------------------------------------- /Projects/App/WatchApp/Sources/Presentation/Main/Factory/MainFactory.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/App/WatchApp/Sources/Presentation/Main/Factory/MainFactory.swift -------------------------------------------------------------------------------- /Projects/App/WatchApp/Sources/Presentation/Main/Intent/MainIntent.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/App/WatchApp/Sources/Presentation/Main/Intent/MainIntent.swift -------------------------------------------------------------------------------- /Projects/App/WatchApp/Sources/Presentation/Main/Intent/MainIntentProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/App/WatchApp/Sources/Presentation/Main/Intent/MainIntentProtocol.swift -------------------------------------------------------------------------------- /Projects/App/WatchApp/Sources/Presentation/Main/Model/MainModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/App/WatchApp/Sources/Presentation/Main/Model/MainModel.swift -------------------------------------------------------------------------------- /Projects/App/WatchApp/Sources/Presentation/Main/Model/MainModelProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/App/WatchApp/Sources/Presentation/Main/Model/MainModelProtocol.swift -------------------------------------------------------------------------------- /Projects/App/WatchApp/Sources/Presentation/Main/View/MainView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/App/WatchApp/Sources/Presentation/Main/View/MainView.swift -------------------------------------------------------------------------------- /Projects/App/WatchApp/Sources/Presentation/Meal/Enum/DisplayMealPart.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/App/WatchApp/Sources/Presentation/Meal/Enum/DisplayMealPart.swift -------------------------------------------------------------------------------- /Projects/App/WatchApp/Sources/Presentation/Meal/Factory/MealFactory.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/App/WatchApp/Sources/Presentation/Meal/Factory/MealFactory.swift -------------------------------------------------------------------------------- /Projects/App/WatchApp/Sources/Presentation/Meal/Intent/MealIntent.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/App/WatchApp/Sources/Presentation/Meal/Intent/MealIntent.swift -------------------------------------------------------------------------------- /Projects/App/WatchApp/Sources/Presentation/Meal/Intent/MealIntentProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/App/WatchApp/Sources/Presentation/Meal/Intent/MealIntentProtocol.swift -------------------------------------------------------------------------------- /Projects/App/WatchApp/Sources/Presentation/Meal/Model/MealModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/App/WatchApp/Sources/Presentation/Meal/Model/MealModel.swift -------------------------------------------------------------------------------- /Projects/App/WatchApp/Sources/Presentation/Meal/Model/MealModelProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/App/WatchApp/Sources/Presentation/Meal/Model/MealModelProtocol.swift -------------------------------------------------------------------------------- /Projects/App/WatchApp/Sources/Presentation/Meal/View/MealView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/App/WatchApp/Sources/Presentation/Meal/View/MealView.swift -------------------------------------------------------------------------------- /Projects/App/WatchApp/Sources/Presentation/Notice/Factory/NoticeFactory.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/App/WatchApp/Sources/Presentation/Notice/Factory/NoticeFactory.swift -------------------------------------------------------------------------------- /Projects/App/WatchApp/Sources/Presentation/Notice/Intent/NoticeIntent.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/App/WatchApp/Sources/Presentation/Notice/Intent/NoticeIntent.swift -------------------------------------------------------------------------------- /Projects/App/WatchApp/Sources/Presentation/Notice/Model/NoticeModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/App/WatchApp/Sources/Presentation/Notice/Model/NoticeModel.swift -------------------------------------------------------------------------------- /Projects/App/WatchApp/Sources/Presentation/Notice/Model/NoticeModelProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/App/WatchApp/Sources/Presentation/Notice/Model/NoticeModelProtocol.swift -------------------------------------------------------------------------------- /Projects/App/WatchApp/Sources/Presentation/Notice/View/NoticeView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/App/WatchApp/Sources/Presentation/Notice/View/NoticeView.swift -------------------------------------------------------------------------------- /Projects/App/WatchApp/Sources/Presentation/Utils/View/DeferView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/App/WatchApp/Sources/Presentation/Utils/View/DeferView.swift -------------------------------------------------------------------------------- /Projects/App/WatchApp/Sources/Presentation/Utils/View/View+if.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/App/WatchApp/Sources/Presentation/Utils/View/View+if.swift -------------------------------------------------------------------------------- /Projects/App/WatchApp/Sources/Utilities/MVIContainer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/App/WatchApp/Sources/Utilities/MVIContainer.swift -------------------------------------------------------------------------------- /Projects/App/WatchApp/Support/Extension-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/App/WatchApp/Support/Extension-Info.plist -------------------------------------------------------------------------------- /Projects/App/WatchApp/Support/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/App/WatchApp/Support/Info.plist -------------------------------------------------------------------------------- /Projects/Core/Keychain/Derived/InfoPlists/KeychainTests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Core/Keychain/Derived/InfoPlists/KeychainTests-Info.plist -------------------------------------------------------------------------------- /Projects/Core/Keychain/Project.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Core/Keychain/Project.swift -------------------------------------------------------------------------------- /Projects/Core/Keychain/Sources/Keychain.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Core/Keychain/Sources/Keychain.swift -------------------------------------------------------------------------------- /Projects/Core/Keychain/Sources/KeychainFake.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Core/Keychain/Sources/KeychainFake.swift -------------------------------------------------------------------------------- /Projects/Core/Keychain/Sources/KeychainImpl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Core/Keychain/Sources/KeychainImpl.swift -------------------------------------------------------------------------------- /Projects/Core/Keychain/Tests/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Projects/Core/Keychain/Tests/TargetTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Core/Keychain/Tests/TargetTest.swift -------------------------------------------------------------------------------- /Projects/Domain/AuthDomain/Derived/InfoPlists/AuthDomainInterface-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/AuthDomain/Derived/InfoPlists/AuthDomainInterface-Info.plist -------------------------------------------------------------------------------- /Projects/Domain/AuthDomain/Derived/InfoPlists/AuthDomainTesting-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/AuthDomain/Derived/InfoPlists/AuthDomainTesting-Info.plist -------------------------------------------------------------------------------- /Projects/Domain/AuthDomain/Derived/InfoPlists/AuthDomainTests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/AuthDomain/Derived/InfoPlists/AuthDomainTests-Info.plist -------------------------------------------------------------------------------- /Projects/Domain/AuthDomain/Interface/DTO/Request/SendAuthCodeRequestDTO.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/AuthDomain/Interface/DTO/Request/SendAuthCodeRequestDTO.swift -------------------------------------------------------------------------------- /Projects/Domain/AuthDomain/Interface/DTO/Request/SigninRequestDTO.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/AuthDomain/Interface/DTO/Request/SigninRequestDTO.swift -------------------------------------------------------------------------------- /Projects/Domain/AuthDomain/Interface/DTO/Request/VerifyAuthCodeRequestDTO.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/AuthDomain/Interface/DTO/Request/VerifyAuthCodeRequestDTO.swift -------------------------------------------------------------------------------- /Projects/Domain/AuthDomain/Interface/DTO/Response/SigninResponseDTO.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/AuthDomain/Interface/DTO/Response/SigninResponseDTO.swift -------------------------------------------------------------------------------- /Projects/Domain/AuthDomain/Interface/DataSource/LocalAuthDatasource.swift: -------------------------------------------------------------------------------- 1 | public protocol LocalAuthDataSource { 2 | func logout() 3 | } 4 | -------------------------------------------------------------------------------- /Projects/Domain/AuthDomain/Interface/DataSource/RemoteAuthDataSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/AuthDomain/Interface/DataSource/RemoteAuthDataSource.swift -------------------------------------------------------------------------------- /Projects/Domain/AuthDomain/Interface/Entity/SigninDmsFeatures.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/AuthDomain/Interface/Entity/SigninDmsFeatures.swift -------------------------------------------------------------------------------- /Projects/Domain/AuthDomain/Interface/Enum/AuthCodeType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/AuthDomain/Interface/Enum/AuthCodeType.swift -------------------------------------------------------------------------------- /Projects/Domain/AuthDomain/Interface/Error/AuthDomainError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/AuthDomain/Interface/Error/AuthDomainError.swift -------------------------------------------------------------------------------- /Projects/Domain/AuthDomain/Interface/Repository/AuthRepository.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/AuthDomain/Interface/Repository/AuthRepository.swift -------------------------------------------------------------------------------- /Projects/Domain/AuthDomain/Interface/UseCase/CheckAccountIDIsExistUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/AuthDomain/Interface/UseCase/CheckAccountIDIsExistUseCase.swift -------------------------------------------------------------------------------- /Projects/Domain/AuthDomain/Interface/UseCase/LogoutUseCase.swift: -------------------------------------------------------------------------------- 1 | public protocol LogoutUseCase { 2 | func execute() 3 | } 4 | -------------------------------------------------------------------------------- /Projects/Domain/AuthDomain/Interface/UseCase/ReissueTokenUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/AuthDomain/Interface/UseCase/ReissueTokenUseCase.swift -------------------------------------------------------------------------------- /Projects/Domain/AuthDomain/Interface/UseCase/SendAuthCodeUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/AuthDomain/Interface/UseCase/SendAuthCodeUseCase.swift -------------------------------------------------------------------------------- /Projects/Domain/AuthDomain/Interface/UseCase/SigninUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/AuthDomain/Interface/UseCase/SigninUseCase.swift -------------------------------------------------------------------------------- /Projects/Domain/AuthDomain/Interface/UseCase/VerifyAuthCodeUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/AuthDomain/Interface/UseCase/VerifyAuthCodeUseCase.swift -------------------------------------------------------------------------------- /Projects/Domain/AuthDomain/Project.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/AuthDomain/Project.swift -------------------------------------------------------------------------------- /Projects/Domain/AuthDomain/Sources/API/AuthAPI.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/AuthDomain/Sources/API/AuthAPI.swift -------------------------------------------------------------------------------- /Projects/Domain/AuthDomain/Sources/DataSource/LocalAuthDataSourceImpl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/AuthDomain/Sources/DataSource/LocalAuthDataSourceImpl.swift -------------------------------------------------------------------------------- /Projects/Domain/AuthDomain/Sources/DataSource/RemoteAuthDataSourceImpl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/AuthDomain/Sources/DataSource/RemoteAuthDataSourceImpl.swift -------------------------------------------------------------------------------- /Projects/Domain/AuthDomain/Sources/Repository/AuthRepositoryImpl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/AuthDomain/Sources/Repository/AuthRepositoryImpl.swift -------------------------------------------------------------------------------- /Projects/Domain/AuthDomain/Sources/UseCase/CheckAccountIDIsExistUseCaseImpl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/AuthDomain/Sources/UseCase/CheckAccountIDIsExistUseCaseImpl.swift -------------------------------------------------------------------------------- /Projects/Domain/AuthDomain/Sources/UseCase/LogoutUseCaseImpl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/AuthDomain/Sources/UseCase/LogoutUseCaseImpl.swift -------------------------------------------------------------------------------- /Projects/Domain/AuthDomain/Sources/UseCase/ReissueTokenUseCaseImpl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/AuthDomain/Sources/UseCase/ReissueTokenUseCaseImpl.swift -------------------------------------------------------------------------------- /Projects/Domain/AuthDomain/Sources/UseCase/SendAuthCodeUseCaseImpl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/AuthDomain/Sources/UseCase/SendAuthCodeUseCaseImpl.swift -------------------------------------------------------------------------------- /Projects/Domain/AuthDomain/Sources/UseCase/SigninUseCaseImpl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/AuthDomain/Sources/UseCase/SigninUseCaseImpl.swift -------------------------------------------------------------------------------- /Projects/Domain/AuthDomain/Sources/UseCase/VerifyAuthCodeUseCaseImpl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/AuthDomain/Sources/UseCase/VerifyAuthCodeUseCaseImpl.swift -------------------------------------------------------------------------------- /Projects/Domain/AuthDomain/Testing/AuthRepositoryStub.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/AuthDomain/Testing/AuthRepositoryStub.swift -------------------------------------------------------------------------------- /Projects/Domain/AuthDomain/Testing/RemoteAuthDataSourceStub.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/AuthDomain/Testing/RemoteAuthDataSourceStub.swift -------------------------------------------------------------------------------- /Projects/Domain/AuthDomain/Testing/SigninUseCaseFake.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/AuthDomain/Testing/SigninUseCaseFake.swift -------------------------------------------------------------------------------- /Projects/Domain/AuthDomain/Tests/AuthDomainTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/AuthDomain/Tests/AuthDomainTest.swift -------------------------------------------------------------------------------- /Projects/Domain/BaseDomain/Derived/InfoPlists/BaseDomain-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/BaseDomain/Derived/InfoPlists/BaseDomain-Info.plist -------------------------------------------------------------------------------- /Projects/Domain/BaseDomain/Derived/InfoPlists/BaseDomainTests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/BaseDomain/Derived/InfoPlists/BaseDomainTests-Info.plist -------------------------------------------------------------------------------- /Projects/Domain/BaseDomain/Project.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/BaseDomain/Project.swift -------------------------------------------------------------------------------- /Projects/Domain/BaseDomain/Sources/API/RefreshAPI.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/BaseDomain/Sources/API/RefreshAPI.swift -------------------------------------------------------------------------------- /Projects/Domain/BaseDomain/Sources/Base/BaseRemoteDataSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/BaseDomain/Sources/Base/BaseRemoteDataSource.swift -------------------------------------------------------------------------------- /Projects/Domain/BaseDomain/Sources/DmsAPI.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/BaseDomain/Sources/DmsAPI.swift -------------------------------------------------------------------------------- /Projects/Domain/BaseDomain/Sources/Error/RefreshError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/BaseDomain/Sources/Error/RefreshError.swift -------------------------------------------------------------------------------- /Projects/Domain/BaseDomain/Sources/Plugins/Jwt/JwtAuthorizable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/BaseDomain/Sources/Plugins/Jwt/JwtAuthorizable.swift -------------------------------------------------------------------------------- /Projects/Domain/BaseDomain/Sources/Plugins/Jwt/JwtPlugin.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/BaseDomain/Sources/Plugins/Jwt/JwtPlugin.swift -------------------------------------------------------------------------------- /Projects/Domain/BaseDomain/Sources/Plugins/Jwt/TokenDTO.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/BaseDomain/Sources/Plugins/Jwt/TokenDTO.swift -------------------------------------------------------------------------------- /Projects/Domain/BaseDomain/Sources/Plugins/Logging/MoyaLogginPlugin.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/BaseDomain/Sources/Plugins/Logging/MoyaLogginPlugin.swift -------------------------------------------------------------------------------- /Projects/Domain/BaseDomain/Tests/Project.swift: -------------------------------------------------------------------------------- 1 | // this is for tuist 2 | -------------------------------------------------------------------------------- /Projects/Domain/FilesDomain/Derived/InfoPlists/FilesDomainInterface-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/FilesDomain/Derived/InfoPlists/FilesDomainInterface-Info.plist -------------------------------------------------------------------------------- /Projects/Domain/FilesDomain/Derived/InfoPlists/FilesDomainTesting-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/FilesDomain/Derived/InfoPlists/FilesDomainTesting-Info.plist -------------------------------------------------------------------------------- /Projects/Domain/FilesDomain/Derived/InfoPlists/FilesDomainTests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/FilesDomain/Derived/InfoPlists/FilesDomainTests-Info.plist -------------------------------------------------------------------------------- /Projects/Domain/FilesDomain/Interface/DTO/Response/UploadFileResponseDTO.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/FilesDomain/Interface/DTO/Response/UploadFileResponseDTO.swift -------------------------------------------------------------------------------- /Projects/Domain/FilesDomain/Interface/DataSource/RemoteFilesDataSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/FilesDomain/Interface/DataSource/RemoteFilesDataSource.swift -------------------------------------------------------------------------------- /Projects/Domain/FilesDomain/Interface/DataSource/RemotePresignedDataSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/FilesDomain/Interface/DataSource/RemotePresignedDataSource.swift -------------------------------------------------------------------------------- /Projects/Domain/FilesDomain/Interface/Entity/PresignedURLEntity.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/FilesDomain/Interface/Entity/PresignedURLEntity.swift -------------------------------------------------------------------------------- /Projects/Domain/FilesDomain/Interface/Error/FilesDomainError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/FilesDomain/Interface/Error/FilesDomainError.swift -------------------------------------------------------------------------------- /Projects/Domain/FilesDomain/Interface/Repository/FilesRepository.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/FilesDomain/Interface/Repository/FilesRepository.swift -------------------------------------------------------------------------------- /Projects/Domain/FilesDomain/Interface/Repository/PresignedRepository.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/FilesDomain/Interface/Repository/PresignedRepository.swift -------------------------------------------------------------------------------- /Projects/Domain/FilesDomain/Interface/UseCase/FetchPresignedURLUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/FilesDomain/Interface/UseCase/FetchPresignedURLUseCase.swift -------------------------------------------------------------------------------- /Projects/Domain/FilesDomain/Interface/UseCase/PresignedUploadFileUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/FilesDomain/Interface/UseCase/PresignedUploadFileUseCase.swift -------------------------------------------------------------------------------- /Projects/Domain/FilesDomain/Interface/UseCase/UploadFileUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/FilesDomain/Interface/UseCase/UploadFileUseCase.swift -------------------------------------------------------------------------------- /Projects/Domain/FilesDomain/Project.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/FilesDomain/Project.swift -------------------------------------------------------------------------------- /Projects/Domain/FilesDomain/Sources/API/FilesAPI.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/FilesDomain/Sources/API/FilesAPI.swift -------------------------------------------------------------------------------- /Projects/Domain/FilesDomain/Sources/API/PresignedAPI.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/FilesDomain/Sources/API/PresignedAPI.swift -------------------------------------------------------------------------------- /Projects/Domain/FilesDomain/Sources/DataSource/RemoteFilesDataSourceImpl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/FilesDomain/Sources/DataSource/RemoteFilesDataSourceImpl.swift -------------------------------------------------------------------------------- /Projects/Domain/FilesDomain/Sources/Repository/FilesRepositoryImpl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/FilesDomain/Sources/Repository/FilesRepositoryImpl.swift -------------------------------------------------------------------------------- /Projects/Domain/FilesDomain/Sources/Repository/PresignedRepositoryImpl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/FilesDomain/Sources/Repository/PresignedRepositoryImpl.swift -------------------------------------------------------------------------------- /Projects/Domain/FilesDomain/Sources/UseCase/FetchPresignedURLUseCaseImpl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/FilesDomain/Sources/UseCase/FetchPresignedURLUseCaseImpl.swift -------------------------------------------------------------------------------- /Projects/Domain/FilesDomain/Sources/UseCase/PresignedUploadFileUseCaseImpl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/FilesDomain/Sources/UseCase/PresignedUploadFileUseCaseImpl.swift -------------------------------------------------------------------------------- /Projects/Domain/FilesDomain/Sources/UseCase/UploadFileUseCaseImpl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/FilesDomain/Sources/UseCase/UploadFileUseCaseImpl.swift -------------------------------------------------------------------------------- /Projects/Domain/FilesDomain/Testing/RemoteFilesDataSourceStub.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/FilesDomain/Testing/RemoteFilesDataSourceStub.swift -------------------------------------------------------------------------------- /Projects/Domain/FilesDomain/Testing/RemotePresignedDataSourceStub.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/FilesDomain/Testing/RemotePresignedDataSourceStub.swift -------------------------------------------------------------------------------- /Projects/Domain/FilesDomain/Tests/FilesDomainTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/FilesDomain/Tests/FilesDomainTest.swift -------------------------------------------------------------------------------- /Projects/Domain/MealDomain/Derived/InfoPlists/MealDomainInterface-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/MealDomain/Derived/InfoPlists/MealDomainInterface-Info.plist -------------------------------------------------------------------------------- /Projects/Domain/MealDomain/Derived/InfoPlists/MealDomainTesting-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/MealDomain/Derived/InfoPlists/MealDomainTesting-Info.plist -------------------------------------------------------------------------------- /Projects/Domain/MealDomain/Derived/InfoPlists/MealDomainTests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/MealDomain/Derived/InfoPlists/MealDomainTests-Info.plist -------------------------------------------------------------------------------- /Projects/Domain/MealDomain/Interface/DTO/DataTransfer/FetchMealListTransfer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/MealDomain/Interface/DTO/DataTransfer/FetchMealListTransfer.swift -------------------------------------------------------------------------------- /Projects/Domain/MealDomain/Interface/DTO/Response/FetchMealListResponseDTO.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/MealDomain/Interface/DTO/Response/FetchMealListResponseDTO.swift -------------------------------------------------------------------------------- /Projects/Domain/MealDomain/Interface/DTO/Response/SingleMealResponseDTO.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/MealDomain/Interface/DTO/Response/SingleMealResponseDTO.swift -------------------------------------------------------------------------------- /Projects/Domain/MealDomain/Interface/DataSource/RemoteMealDataSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/MealDomain/Interface/DataSource/RemoteMealDataSource.swift -------------------------------------------------------------------------------- /Projects/Domain/MealDomain/Interface/Entity/MealEntity.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/MealDomain/Interface/Entity/MealEntity.swift -------------------------------------------------------------------------------- /Projects/Domain/MealDomain/Interface/Enum/DisplayMealPart.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/MealDomain/Interface/Enum/DisplayMealPart.swift -------------------------------------------------------------------------------- /Projects/Domain/MealDomain/Interface/Error/MealDomainError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/MealDomain/Interface/Error/MealDomainError.swift -------------------------------------------------------------------------------- /Projects/Domain/MealDomain/Interface/Error/Repository/MealRepository.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/MealDomain/Interface/Error/Repository/MealRepository.swift -------------------------------------------------------------------------------- /Projects/Domain/MealDomain/Interface/Error/UseCase/FetchMealListUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/MealDomain/Interface/Error/UseCase/FetchMealListUseCase.swift -------------------------------------------------------------------------------- /Projects/Domain/MealDomain/Project.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/MealDomain/Project.swift -------------------------------------------------------------------------------- /Projects/Domain/MealDomain/Sources/API/MealAPI.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/MealDomain/Sources/API/MealAPI.swift -------------------------------------------------------------------------------- /Projects/Domain/MealDomain/Sources/DataSource/RemoteMealDataSourceImpl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/MealDomain/Sources/DataSource/RemoteMealDataSourceImpl.swift -------------------------------------------------------------------------------- /Projects/Domain/MealDomain/Sources/Repository/MealRepositoryImpl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/MealDomain/Sources/Repository/MealRepositoryImpl.swift -------------------------------------------------------------------------------- /Projects/Domain/MealDomain/Sources/UseCase/FetchMealListUseCaseImpl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/MealDomain/Sources/UseCase/FetchMealListUseCaseImpl.swift -------------------------------------------------------------------------------- /Projects/Domain/MealDomain/Testing/RemoteMealDataSourceStub.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/MealDomain/Testing/RemoteMealDataSourceStub.swift -------------------------------------------------------------------------------- /Projects/Domain/MealDomain/Tests/MealDomainTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/MealDomain/Tests/MealDomainTest.swift -------------------------------------------------------------------------------- /Projects/Domain/NoticeDomain/Derived/InfoPlists/NoticeDomainInterface-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/NoticeDomain/Derived/InfoPlists/NoticeDomainInterface-Info.plist -------------------------------------------------------------------------------- /Projects/Domain/NoticeDomain/Derived/InfoPlists/NoticeDomainTesting-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/NoticeDomain/Derived/InfoPlists/NoticeDomainTesting-Info.plist -------------------------------------------------------------------------------- /Projects/Domain/NoticeDomain/Derived/InfoPlists/NoticeDomainTests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/NoticeDomain/Derived/InfoPlists/NoticeDomainTests-Info.plist -------------------------------------------------------------------------------- /Projects/Domain/NoticeDomain/Interface/DTO/Response/SingleNoticeResponseDTO.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/NoticeDomain/Interface/DTO/Response/SingleNoticeResponseDTO.swift -------------------------------------------------------------------------------- /Projects/Domain/NoticeDomain/Interface/DataSource/RemoteNoticeDataSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/NoticeDomain/Interface/DataSource/RemoteNoticeDataSource.swift -------------------------------------------------------------------------------- /Projects/Domain/NoticeDomain/Interface/Entity/DetailNoticeEntity.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/NoticeDomain/Interface/Entity/DetailNoticeEntity.swift -------------------------------------------------------------------------------- /Projects/Domain/NoticeDomain/Interface/Entity/NoticeEntity.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/NoticeDomain/Interface/Entity/NoticeEntity.swift -------------------------------------------------------------------------------- /Projects/Domain/NoticeDomain/Interface/Enum/NoticeOrderType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/NoticeDomain/Interface/Enum/NoticeOrderType.swift -------------------------------------------------------------------------------- /Projects/Domain/NoticeDomain/Interface/Error/NoticeDomainError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/NoticeDomain/Interface/Error/NoticeDomainError.swift -------------------------------------------------------------------------------- /Projects/Domain/NoticeDomain/Interface/Repository/NoticeRepository.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/NoticeDomain/Interface/Repository/NoticeRepository.swift -------------------------------------------------------------------------------- /Projects/Domain/NoticeDomain/Interface/UseCase/FetchDetailNoticeUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/NoticeDomain/Interface/UseCase/FetchDetailNoticeUseCase.swift -------------------------------------------------------------------------------- /Projects/Domain/NoticeDomain/Interface/UseCase/FetchNoticeListUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/NoticeDomain/Interface/UseCase/FetchNoticeListUseCase.swift -------------------------------------------------------------------------------- /Projects/Domain/NoticeDomain/Interface/UseCase/FetchWhetherNewNoticeUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/NoticeDomain/Interface/UseCase/FetchWhetherNewNoticeUseCase.swift -------------------------------------------------------------------------------- /Projects/Domain/NoticeDomain/Project.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/NoticeDomain/Project.swift -------------------------------------------------------------------------------- /Projects/Domain/NoticeDomain/Sources/API/NoticeAPI.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/NoticeDomain/Sources/API/NoticeAPI.swift -------------------------------------------------------------------------------- /Projects/Domain/NoticeDomain/Sources/DataSource/RemoteNoticeDataSourceImpl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/NoticeDomain/Sources/DataSource/RemoteNoticeDataSourceImpl.swift -------------------------------------------------------------------------------- /Projects/Domain/NoticeDomain/Sources/Repository/NoticeRepository.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/NoticeDomain/Sources/Repository/NoticeRepository.swift -------------------------------------------------------------------------------- /Projects/Domain/NoticeDomain/Sources/UseCase/FetchDetailNoticeUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/NoticeDomain/Sources/UseCase/FetchDetailNoticeUseCase.swift -------------------------------------------------------------------------------- /Projects/Domain/NoticeDomain/Sources/UseCase/FetchNoticeListUseCaseImpl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/NoticeDomain/Sources/UseCase/FetchNoticeListUseCaseImpl.swift -------------------------------------------------------------------------------- /Projects/Domain/NoticeDomain/Testing/RemoteNoticeDataSourceStub.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/NoticeDomain/Testing/RemoteNoticeDataSourceStub.swift -------------------------------------------------------------------------------- /Projects/Domain/NoticeDomain/Testing/Testing.swift: -------------------------------------------------------------------------------- 1 | // This is for Tuist 2 | -------------------------------------------------------------------------------- /Projects/Domain/NoticeDomain/Tests/NoticeDomainTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/NoticeDomain/Tests/NoticeDomainTest.swift -------------------------------------------------------------------------------- /Projects/Domain/NotificationDomain/Interface/Enum/TopicType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/NotificationDomain/Interface/Enum/TopicType.swift -------------------------------------------------------------------------------- /Projects/Domain/NotificationDomain/Interface/Error/NotificationDomainError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/NotificationDomain/Interface/Error/NotificationDomainError.swift -------------------------------------------------------------------------------- /Projects/Domain/NotificationDomain/Interface/UseCase/SubscribeTopicUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/NotificationDomain/Interface/UseCase/SubscribeTopicUseCase.swift -------------------------------------------------------------------------------- /Projects/Domain/NotificationDomain/Project.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/NotificationDomain/Project.swift -------------------------------------------------------------------------------- /Projects/Domain/NotificationDomain/Sources/API/NotificationAPI.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/NotificationDomain/Sources/API/NotificationAPI.swift -------------------------------------------------------------------------------- /Projects/Domain/NotificationDomain/Testing/Testing.swift: -------------------------------------------------------------------------------- 1 | // This is for Tuist 2 | -------------------------------------------------------------------------------- /Projects/Domain/NotificationDomain/Tests/NoticeDomainTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/NotificationDomain/Tests/NoticeDomainTest.swift -------------------------------------------------------------------------------- /Projects/Domain/OutingDomain/Derived/InfoPlists/OutingDomainInterface-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/OutingDomain/Derived/InfoPlists/OutingDomainInterface-Info.plist -------------------------------------------------------------------------------- /Projects/Domain/OutingDomain/Derived/InfoPlists/OutingDomainTesting-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/OutingDomain/Derived/InfoPlists/OutingDomainTesting-Info.plist -------------------------------------------------------------------------------- /Projects/Domain/OutingDomain/Derived/InfoPlists/OutingDomainTests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/OutingDomain/Derived/InfoPlists/OutingDomainTests-Info.plist -------------------------------------------------------------------------------- /Projects/Domain/OutingDomain/Interface/DTO/Request/OutingApplyRequestDTO.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/OutingDomain/Interface/DTO/Request/OutingApplyRequestDTO.swift -------------------------------------------------------------------------------- /Projects/Domain/OutingDomain/Interface/DataSource/RemoteOutingDataSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/OutingDomain/Interface/DataSource/RemoteOutingDataSource.swift -------------------------------------------------------------------------------- /Projects/Domain/OutingDomain/Interface/Entity/MyOutingApplicationItemEntity.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/OutingDomain/Interface/Entity/MyOutingApplicationItemEntity.swift -------------------------------------------------------------------------------- /Projects/Domain/OutingDomain/Interface/Entity/OutingApplicationEntity.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/OutingDomain/Interface/Entity/OutingApplicationEntity.swift -------------------------------------------------------------------------------- /Projects/Domain/OutingDomain/Interface/Entity/OutingEntity.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/OutingDomain/Interface/Entity/OutingEntity.swift -------------------------------------------------------------------------------- /Projects/Domain/OutingDomain/Interface/Entity/OutingTypeEntity.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/OutingDomain/Interface/Entity/OutingTypeEntity.swift -------------------------------------------------------------------------------- /Projects/Domain/OutingDomain/Interface/Error/OutingDomainError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/OutingDomain/Interface/Error/OutingDomainError.swift -------------------------------------------------------------------------------- /Projects/Domain/OutingDomain/Interface/Repository/OutingRepository.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/OutingDomain/Interface/Repository/OutingRepository.swift -------------------------------------------------------------------------------- /Projects/Domain/OutingDomain/Interface/UseCase/FetchOutingTypeUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/OutingDomain/Interface/UseCase/FetchOutingTypeUseCase.swift -------------------------------------------------------------------------------- /Projects/Domain/OutingDomain/Interface/UseCase/OutingApplicationUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/OutingDomain/Interface/UseCase/OutingApplicationUseCase.swift -------------------------------------------------------------------------------- /Projects/Domain/OutingDomain/Project.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/OutingDomain/Project.swift -------------------------------------------------------------------------------- /Projects/Domain/OutingDomain/Sources/API/OutingAPI.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/OutingDomain/Sources/API/OutingAPI.swift -------------------------------------------------------------------------------- /Projects/Domain/OutingDomain/Sources/DataSource/RemoteOutingDataSourceImpl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/OutingDomain/Sources/DataSource/RemoteOutingDataSourceImpl.swift -------------------------------------------------------------------------------- /Projects/Domain/OutingDomain/Sources/Repository/OutingRepositoryImpl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/OutingDomain/Sources/Repository/OutingRepositoryImpl.swift -------------------------------------------------------------------------------- /Projects/Domain/OutingDomain/Sources/UseCase/FetchOutingTypeUseCaseImpl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/OutingDomain/Sources/UseCase/FetchOutingTypeUseCaseImpl.swift -------------------------------------------------------------------------------- /Projects/Domain/OutingDomain/Sources/UseCase/OutingApplicationUseCaseImpl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/OutingDomain/Sources/UseCase/OutingApplicationUseCaseImpl.swift -------------------------------------------------------------------------------- /Projects/Domain/OutingDomain/Testing/Project.swift: -------------------------------------------------------------------------------- 1 | // This is for tuist 2 | -------------------------------------------------------------------------------- /Projects/Domain/OutingDomain/Tests/Project.swift: -------------------------------------------------------------------------------- 1 | // This is for tuist 2 | -------------------------------------------------------------------------------- /Projects/Domain/PointsDomain/Derived/InfoPlists/PointsDomainInterface-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/PointsDomain/Derived/InfoPlists/PointsDomainInterface-Info.plist -------------------------------------------------------------------------------- /Projects/Domain/PointsDomain/Derived/InfoPlists/PointsDomainTesting-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/PointsDomain/Derived/InfoPlists/PointsDomainTesting-Info.plist -------------------------------------------------------------------------------- /Projects/Domain/PointsDomain/Derived/InfoPlists/PointsDomainTests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/PointsDomain/Derived/InfoPlists/PointsDomainTests-Info.plist -------------------------------------------------------------------------------- /Projects/Domain/PointsDomain/Interface/DataSource/RemotePointsDataSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/PointsDomain/Interface/DataSource/RemotePointsDataSource.swift -------------------------------------------------------------------------------- /Projects/Domain/PointsDomain/Interface/Entity/PointEntity.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/PointsDomain/Interface/Entity/PointEntity.swift -------------------------------------------------------------------------------- /Projects/Domain/PointsDomain/Interface/Enum/PointsType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/PointsDomain/Interface/Enum/PointsType.swift -------------------------------------------------------------------------------- /Projects/Domain/PointsDomain/Interface/Error/PointsDomainError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/PointsDomain/Interface/Error/PointsDomainError.swift -------------------------------------------------------------------------------- /Projects/Domain/PointsDomain/Interface/Repository/PointsRepository.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/PointsDomain/Interface/Repository/PointsRepository.swift -------------------------------------------------------------------------------- /Projects/Domain/PointsDomain/Interface/UseCase/FetchPointListUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/PointsDomain/Interface/UseCase/FetchPointListUseCase.swift -------------------------------------------------------------------------------- /Projects/Domain/PointsDomain/Project.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/PointsDomain/Project.swift -------------------------------------------------------------------------------- /Projects/Domain/PointsDomain/Sources/API/PointsAPI.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/PointsDomain/Sources/API/PointsAPI.swift -------------------------------------------------------------------------------- /Projects/Domain/PointsDomain/Sources/DataSource/RemotePointsDataSourceImpl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/PointsDomain/Sources/DataSource/RemotePointsDataSourceImpl.swift -------------------------------------------------------------------------------- /Projects/Domain/PointsDomain/Sources/Repository/PointsRepositoryImpl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/PointsDomain/Sources/Repository/PointsRepositoryImpl.swift -------------------------------------------------------------------------------- /Projects/Domain/PointsDomain/Sources/UseCase/FetchPointListUseCaseImpl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/PointsDomain/Sources/UseCase/FetchPointListUseCaseImpl.swift -------------------------------------------------------------------------------- /Projects/Domain/PointsDomain/Testing/RemotePointsDataSourceStub.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/PointsDomain/Testing/RemotePointsDataSourceStub.swift -------------------------------------------------------------------------------- /Projects/Domain/PointsDomain/Testing/Testing.swift: -------------------------------------------------------------------------------- 1 | // This is for Tuist 2 | -------------------------------------------------------------------------------- /Projects/Domain/PointsDomain/Tests/PointsDomainTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/PointsDomain/Tests/PointsDomainTest.swift -------------------------------------------------------------------------------- /Projects/Domain/RemainsDomain/Derived/InfoPlists/RemainsDomainTesting-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/RemainsDomain/Derived/InfoPlists/RemainsDomainTesting-Info.plist -------------------------------------------------------------------------------- /Projects/Domain/RemainsDomain/Derived/InfoPlists/RemainsDomainTests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/RemainsDomain/Derived/InfoPlists/RemainsDomainTests-Info.plist -------------------------------------------------------------------------------- /Projects/Domain/RemainsDomain/Interface/DataSource/RemoteRemainsDataSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/RemainsDomain/Interface/DataSource/RemoteRemainsDataSource.swift -------------------------------------------------------------------------------- /Projects/Domain/RemainsDomain/Interface/Entity/RemainApplicationListEntity.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/RemainsDomain/Interface/Entity/RemainApplicationListEntity.swift -------------------------------------------------------------------------------- /Projects/Domain/RemainsDomain/Interface/Entity/RemainOptionEntity.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/RemainsDomain/Interface/Entity/RemainOptionEntity.swift -------------------------------------------------------------------------------- /Projects/Domain/RemainsDomain/Interface/Entity/RemainsAvailableTimeEntity.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/RemainsDomain/Interface/Entity/RemainsAvailableTimeEntity.swift -------------------------------------------------------------------------------- /Projects/Domain/RemainsDomain/Interface/Enum/WeekType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/RemainsDomain/Interface/Enum/WeekType.swift -------------------------------------------------------------------------------- /Projects/Domain/RemainsDomain/Interface/Error/RemainsDomainError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/RemainsDomain/Interface/Error/RemainsDomainError.swift -------------------------------------------------------------------------------- /Projects/Domain/RemainsDomain/Interface/Repository/RemainsRepository.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/RemainsDomain/Interface/Repository/RemainsRepository.swift -------------------------------------------------------------------------------- /Projects/Domain/RemainsDomain/Project.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/RemainsDomain/Project.swift -------------------------------------------------------------------------------- /Projects/Domain/RemainsDomain/Sources/API/RemainsAPI.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/RemainsDomain/Sources/API/RemainsAPI.swift -------------------------------------------------------------------------------- /Projects/Domain/RemainsDomain/Sources/Repository/RemainsRepositoryImpl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/RemainsDomain/Sources/Repository/RemainsRepositoryImpl.swift -------------------------------------------------------------------------------- /Projects/Domain/RemainsDomain/Sources/UseCase/FetchRemainAppListUseCaseImpl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/RemainsDomain/Sources/UseCase/FetchRemainAppListUseCaseImpl.swift -------------------------------------------------------------------------------- /Projects/Domain/RemainsDomain/Testing/Testing.swift: -------------------------------------------------------------------------------- 1 | // This is for Tuist 2 | -------------------------------------------------------------------------------- /Projects/Domain/RemainsDomain/Tests/RemainsDomainTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/RemainsDomain/Tests/RemainsDomainTest.swift -------------------------------------------------------------------------------- /Projects/Domain/SchoolDomain/Derived/InfoPlists/SchoolDomainInterface-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/SchoolDomain/Derived/InfoPlists/SchoolDomainInterface-Info.plist -------------------------------------------------------------------------------- /Projects/Domain/SchoolDomain/Derived/InfoPlists/SchoolDomainTesting-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/SchoolDomain/Derived/InfoPlists/SchoolDomainTesting-Info.plist -------------------------------------------------------------------------------- /Projects/Domain/SchoolDomain/Derived/InfoPlists/SchoolDomainTests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/SchoolDomain/Derived/InfoPlists/SchoolDomainTests-Info.plist -------------------------------------------------------------------------------- /Projects/Domain/SchoolDomain/Interface/DTO/Response/SingleSchoolResponseDTO.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/SchoolDomain/Interface/DTO/Response/SingleSchoolResponseDTO.swift -------------------------------------------------------------------------------- /Projects/Domain/SchoolDomain/Interface/DataSource/RemoteSchoolDataSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/SchoolDomain/Interface/DataSource/RemoteSchoolDataSource.swift -------------------------------------------------------------------------------- /Projects/Domain/SchoolDomain/Interface/Entity/SchoolEntity.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/SchoolDomain/Interface/Entity/SchoolEntity.swift -------------------------------------------------------------------------------- /Projects/Domain/SchoolDomain/Interface/Error/SchoolDomainError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/SchoolDomain/Interface/Error/SchoolDomainError.swift -------------------------------------------------------------------------------- /Projects/Domain/SchoolDomain/Interface/Repository/SchoolRepository.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/SchoolDomain/Interface/Repository/SchoolRepository.swift -------------------------------------------------------------------------------- /Projects/Domain/SchoolDomain/Interface/UseCase/CheckSchoolCodeUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/SchoolDomain/Interface/UseCase/CheckSchoolCodeUseCase.swift -------------------------------------------------------------------------------- /Projects/Domain/SchoolDomain/Interface/UseCase/CheckSchoolQuestionUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/SchoolDomain/Interface/UseCase/CheckSchoolQuestionUseCase.swift -------------------------------------------------------------------------------- /Projects/Domain/SchoolDomain/Interface/UseCase/FetchSchoolListUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/SchoolDomain/Interface/UseCase/FetchSchoolListUseCase.swift -------------------------------------------------------------------------------- /Projects/Domain/SchoolDomain/Interface/UseCase/GetSchoolQuestionUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/SchoolDomain/Interface/UseCase/GetSchoolQuestionUseCase.swift -------------------------------------------------------------------------------- /Projects/Domain/SchoolDomain/Project.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/SchoolDomain/Project.swift -------------------------------------------------------------------------------- /Projects/Domain/SchoolDomain/Sources/API/SchoolAPI.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/SchoolDomain/Sources/API/SchoolAPI.swift -------------------------------------------------------------------------------- /Projects/Domain/SchoolDomain/Sources/DataSource/RemoteSchoolDataSourceImpl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/SchoolDomain/Sources/DataSource/RemoteSchoolDataSourceImpl.swift -------------------------------------------------------------------------------- /Projects/Domain/SchoolDomain/Sources/Repository/SchoolRepositoryImpl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/SchoolDomain/Sources/Repository/SchoolRepositoryImpl.swift -------------------------------------------------------------------------------- /Projects/Domain/SchoolDomain/Sources/UseCase/CheckSchoolCodeUseCaseImpl..swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/SchoolDomain/Sources/UseCase/CheckSchoolCodeUseCaseImpl..swift -------------------------------------------------------------------------------- /Projects/Domain/SchoolDomain/Sources/UseCase/CheckSchoolQuestionUseCaseImpl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/SchoolDomain/Sources/UseCase/CheckSchoolQuestionUseCaseImpl.swift -------------------------------------------------------------------------------- /Projects/Domain/SchoolDomain/Sources/UseCase/FetchSchoolListUseCaseImpl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/SchoolDomain/Sources/UseCase/FetchSchoolListUseCaseImpl.swift -------------------------------------------------------------------------------- /Projects/Domain/SchoolDomain/Sources/UseCase/FetchSchoolQuestionUseCaseImpl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/SchoolDomain/Sources/UseCase/FetchSchoolQuestionUseCaseImpl.swift -------------------------------------------------------------------------------- /Projects/Domain/SchoolDomain/Testing/RemoteSchoolDataSourceStub.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/SchoolDomain/Testing/RemoteSchoolDataSourceStub.swift -------------------------------------------------------------------------------- /Projects/Domain/SchoolDomain/Testing/SchoolRepositoryStub.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/SchoolDomain/Testing/SchoolRepositoryStub.swift -------------------------------------------------------------------------------- /Projects/Domain/SchoolDomain/Testing/Testing.swift: -------------------------------------------------------------------------------- 1 | // This is for Tuist 2 | -------------------------------------------------------------------------------- /Projects/Domain/SchoolDomain/Tests/SchoolDomainTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/SchoolDomain/Tests/SchoolDomainTest.swift -------------------------------------------------------------------------------- /Projects/Domain/StudentsDomain/Derived/InfoPlists/StudentsDomainTests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/StudentsDomain/Derived/InfoPlists/StudentsDomainTests-Info.plist -------------------------------------------------------------------------------- /Projects/Domain/StudentsDomain/Interface/DTO/Request/FindIDRequestDTO.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/StudentsDomain/Interface/DTO/Request/FindIDRequestDTO.swift -------------------------------------------------------------------------------- /Projects/Domain/StudentsDomain/Interface/DTO/Request/SignupRequestDTO.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/StudentsDomain/Interface/DTO/Request/SignupRequestDTO.swift -------------------------------------------------------------------------------- /Projects/Domain/StudentsDomain/Interface/DTO/Response/FindIDResponseDTO.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/StudentsDomain/Interface/DTO/Response/FindIDResponseDTO.swift -------------------------------------------------------------------------------- /Projects/Domain/StudentsDomain/Interface/DTO/Response/SignupResponseDTO.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/StudentsDomain/Interface/DTO/Response/SignupResponseDTO.swift -------------------------------------------------------------------------------- /Projects/Domain/StudentsDomain/Interface/DTO/Response/StudentResponseDTO.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/StudentsDomain/Interface/DTO/Response/StudentResponseDTO.swift -------------------------------------------------------------------------------- /Projects/Domain/StudentsDomain/Interface/Entity/MyProfileEntity.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/StudentsDomain/Interface/Entity/MyProfileEntity.swift -------------------------------------------------------------------------------- /Projects/Domain/StudentsDomain/Interface/Entity/SignupDmsFeatures.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/StudentsDomain/Interface/Entity/SignupDmsFeatures.swift -------------------------------------------------------------------------------- /Projects/Domain/StudentsDomain/Interface/Entity/StudentEntity.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/StudentsDomain/Interface/Entity/StudentEntity.swift -------------------------------------------------------------------------------- /Projects/Domain/StudentsDomain/Interface/Error/StudentsDomainError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/StudentsDomain/Interface/Error/StudentsDomainError.swift -------------------------------------------------------------------------------- /Projects/Domain/StudentsDomain/Interface/Repository/StudentsRepository.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/StudentsDomain/Interface/Repository/StudentsRepository.swift -------------------------------------------------------------------------------- /Projects/Domain/StudentsDomain/Interface/UseCase/ChangeProfileImageUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/StudentsDomain/Interface/UseCase/ChangeProfileImageUseCase.swift -------------------------------------------------------------------------------- /Projects/Domain/StudentsDomain/Interface/UseCase/CheckDuplicateEmailUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/StudentsDomain/Interface/UseCase/CheckDuplicateEmailUseCase.swift -------------------------------------------------------------------------------- /Projects/Domain/StudentsDomain/Interface/UseCase/FetchAllStudentUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/StudentsDomain/Interface/UseCase/FetchAllStudentUseCase.swift -------------------------------------------------------------------------------- /Projects/Domain/StudentsDomain/Interface/UseCase/FetchMyProfileUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/StudentsDomain/Interface/UseCase/FetchMyProfileUseCase.swift -------------------------------------------------------------------------------- /Projects/Domain/StudentsDomain/Interface/UseCase/FindIDUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/StudentsDomain/Interface/UseCase/FindIDUseCase.swift -------------------------------------------------------------------------------- /Projects/Domain/StudentsDomain/Interface/UseCase/RenewalPasswordUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/StudentsDomain/Interface/UseCase/RenewalPasswordUseCase.swift -------------------------------------------------------------------------------- /Projects/Domain/StudentsDomain/Interface/UseCase/SignupUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/StudentsDomain/Interface/UseCase/SignupUseCase.swift -------------------------------------------------------------------------------- /Projects/Domain/StudentsDomain/Interface/UseCase/WithdrawalUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/StudentsDomain/Interface/UseCase/WithdrawalUseCase.swift -------------------------------------------------------------------------------- /Projects/Domain/StudentsDomain/Project.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/StudentsDomain/Project.swift -------------------------------------------------------------------------------- /Projects/Domain/StudentsDomain/Sources/API/StudentsAPI.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/StudentsDomain/Sources/API/StudentsAPI.swift -------------------------------------------------------------------------------- /Projects/Domain/StudentsDomain/Sources/Repository/StudentsRepositoryImpl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/StudentsDomain/Sources/Repository/StudentsRepositoryImpl.swift -------------------------------------------------------------------------------- /Projects/Domain/StudentsDomain/Sources/UseCase/ChangeProfileImageUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/StudentsDomain/Sources/UseCase/ChangeProfileImageUseCase.swift -------------------------------------------------------------------------------- /Projects/Domain/StudentsDomain/Sources/UseCase/FetchAllStudentUseCaseImpl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/StudentsDomain/Sources/UseCase/FetchAllStudentUseCaseImpl.swift -------------------------------------------------------------------------------- /Projects/Domain/StudentsDomain/Sources/UseCase/FetchMyProfileUseCaseImpl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/StudentsDomain/Sources/UseCase/FetchMyProfileUseCaseImpl.swift -------------------------------------------------------------------------------- /Projects/Domain/StudentsDomain/Sources/UseCase/FindIDUseCaseImpl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/StudentsDomain/Sources/UseCase/FindIDUseCaseImpl.swift -------------------------------------------------------------------------------- /Projects/Domain/StudentsDomain/Sources/UseCase/RenewalPasswordUseCaseImpl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/StudentsDomain/Sources/UseCase/RenewalPasswordUseCaseImpl.swift -------------------------------------------------------------------------------- /Projects/Domain/StudentsDomain/Sources/UseCase/SignupUseCaseImpl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/StudentsDomain/Sources/UseCase/SignupUseCaseImpl.swift -------------------------------------------------------------------------------- /Projects/Domain/StudentsDomain/Sources/UseCase/WithdrawalUseCaseImpl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/StudentsDomain/Sources/UseCase/WithdrawalUseCaseImpl.swift -------------------------------------------------------------------------------- /Projects/Domain/StudentsDomain/Testing/RemoteStudentsDataSourceStub.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/StudentsDomain/Testing/RemoteStudentsDataSourceStub.swift -------------------------------------------------------------------------------- /Projects/Domain/StudentsDomain/Testing/SignupUseCaseFake.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/StudentsDomain/Testing/SignupUseCaseFake.swift -------------------------------------------------------------------------------- /Projects/Domain/StudentsDomain/Testing/StudentsRepositoryStub.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/StudentsDomain/Testing/StudentsRepositoryStub.swift -------------------------------------------------------------------------------- /Projects/Domain/StudentsDomain/Testing/Testing.swift: -------------------------------------------------------------------------------- 1 | // This is for Tuist 2 | -------------------------------------------------------------------------------- /Projects/Domain/StudentsDomain/Tests/StudentsDomainTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/StudentsDomain/Tests/StudentsDomainTest.swift -------------------------------------------------------------------------------- /Projects/Domain/StudyRoomsDomain/Interface/DTO/Response/SeatResponseDTO.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/StudyRoomsDomain/Interface/DTO/Response/SeatResponseDTO.swift -------------------------------------------------------------------------------- /Projects/Domain/StudyRoomsDomain/Interface/Entity/DetailStudyRoomEntity.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/StudyRoomsDomain/Interface/Entity/DetailStudyRoomEntity.swift -------------------------------------------------------------------------------- /Projects/Domain/StudyRoomsDomain/Interface/Entity/MyStudyRoomAppItemsEntity.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/StudyRoomsDomain/Interface/Entity/MyStudyRoomAppItemsEntity.swift -------------------------------------------------------------------------------- /Projects/Domain/StudyRoomsDomain/Interface/Entity/PresignedURLEntity.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/StudyRoomsDomain/Interface/Entity/PresignedURLEntity.swift -------------------------------------------------------------------------------- /Projects/Domain/StudyRoomsDomain/Interface/Entity/SeatEntity.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/StudyRoomsDomain/Interface/Entity/SeatEntity.swift -------------------------------------------------------------------------------- /Projects/Domain/StudyRoomsDomain/Interface/Entity/SeatStudentEntity.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/StudyRoomsDomain/Interface/Entity/SeatStudentEntity.swift -------------------------------------------------------------------------------- /Projects/Domain/StudyRoomsDomain/Interface/Entity/SeatTypeEntity.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/StudyRoomsDomain/Interface/Entity/SeatTypeEntity.swift -------------------------------------------------------------------------------- /Projects/Domain/StudyRoomsDomain/Interface/Entity/StudyAvailableTimeEntity.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/StudyRoomsDomain/Interface/Entity/StudyAvailableTimeEntity.swift -------------------------------------------------------------------------------- /Projects/Domain/StudyRoomsDomain/Interface/Entity/StudyRoomEntity.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/StudyRoomsDomain/Interface/Entity/StudyRoomEntity.swift -------------------------------------------------------------------------------- /Projects/Domain/StudyRoomsDomain/Interface/Entity/StudyroomTimeListEntity.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/StudyRoomsDomain/Interface/Entity/StudyroomTimeListEntity.swift -------------------------------------------------------------------------------- /Projects/Domain/StudyRoomsDomain/Interface/Entity/TimeSlotsEntity.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/StudyRoomsDomain/Interface/Entity/TimeSlotsEntity.swift -------------------------------------------------------------------------------- /Projects/Domain/StudyRoomsDomain/Interface/Enum/AvailableSexType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/StudyRoomsDomain/Interface/Enum/AvailableSexType.swift -------------------------------------------------------------------------------- /Projects/Domain/StudyRoomsDomain/Interface/Enum/SeatStatusType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/StudyRoomsDomain/Interface/Enum/SeatStatusType.swift -------------------------------------------------------------------------------- /Projects/Domain/StudyRoomsDomain/Interface/Error/StudyRoomsDomainError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/StudyRoomsDomain/Interface/Error/StudyRoomsDomainError.swift -------------------------------------------------------------------------------- /Projects/Domain/StudyRoomsDomain/Interface/Repository/StudyRoomsRepository.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/StudyRoomsDomain/Interface/Repository/StudyRoomsRepository.swift -------------------------------------------------------------------------------- /Projects/Domain/StudyRoomsDomain/Interface/UseCase/FetchSeatTypesUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/StudyRoomsDomain/Interface/UseCase/FetchSeatTypesUseCase.swift -------------------------------------------------------------------------------- /Projects/Domain/StudyRoomsDomain/Project.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/StudyRoomsDomain/Project.swift -------------------------------------------------------------------------------- /Projects/Domain/StudyRoomsDomain/Sources/API/StudyRoomsAPI.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/StudyRoomsDomain/Sources/API/StudyRoomsAPI.swift -------------------------------------------------------------------------------- /Projects/Domain/StudyRoomsDomain/Sources/UseCase/FetchSeatTypesUseCaseImpl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/StudyRoomsDomain/Sources/UseCase/FetchSeatTypesUseCaseImpl.swift -------------------------------------------------------------------------------- /Projects/Domain/StudyRoomsDomain/Testing/Testing.swift: -------------------------------------------------------------------------------- 1 | // This is for Tuist 2 | -------------------------------------------------------------------------------- /Projects/Domain/StudyRoomsDomain/Tests/StudyRoomsDomainTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/StudyRoomsDomain/Tests/StudyRoomsDomainTest.swift -------------------------------------------------------------------------------- /Projects/Domain/UsersDomain/Derived/InfoPlists/UsersDomainInterface-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/UsersDomain/Derived/InfoPlists/UsersDomainInterface-Info.plist -------------------------------------------------------------------------------- /Projects/Domain/UsersDomain/Derived/InfoPlists/UsersDomainTesting-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/UsersDomain/Derived/InfoPlists/UsersDomainTesting-Info.plist -------------------------------------------------------------------------------- /Projects/Domain/UsersDomain/Derived/InfoPlists/UsersDomainTests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/UsersDomain/Derived/InfoPlists/UsersDomainTests-Info.plist -------------------------------------------------------------------------------- /Projects/Domain/UsersDomain/Interface/DTO/Request/ChangePasswordRequestDTO.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/UsersDomain/Interface/DTO/Request/ChangePasswordRequestDTO.swift -------------------------------------------------------------------------------- /Projects/Domain/UsersDomain/Interface/DataSource/RemoteUsersDataSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/UsersDomain/Interface/DataSource/RemoteUsersDataSource.swift -------------------------------------------------------------------------------- /Projects/Domain/UsersDomain/Interface/Error/UsersDomainError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/UsersDomain/Interface/Error/UsersDomainError.swift -------------------------------------------------------------------------------- /Projects/Domain/UsersDomain/Interface/Repository/UsersRepository.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/UsersDomain/Interface/Repository/UsersRepository.swift -------------------------------------------------------------------------------- /Projects/Domain/UsersDomain/Interface/UseCase/ChangePasswordUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/UsersDomain/Interface/UseCase/ChangePasswordUseCase.swift -------------------------------------------------------------------------------- /Projects/Domain/UsersDomain/Interface/UseCase/CompareCurrentPasswordUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/UsersDomain/Interface/UseCase/CompareCurrentPasswordUseCase.swift -------------------------------------------------------------------------------- /Projects/Domain/UsersDomain/Project.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/UsersDomain/Project.swift -------------------------------------------------------------------------------- /Projects/Domain/UsersDomain/Sources/API/UsersAPI.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/UsersDomain/Sources/API/UsersAPI.swift -------------------------------------------------------------------------------- /Projects/Domain/UsersDomain/Sources/DataSource/RemoteUsersDataSourceImpl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/UsersDomain/Sources/DataSource/RemoteUsersDataSourceImpl.swift -------------------------------------------------------------------------------- /Projects/Domain/UsersDomain/Sources/Repository/UsersRepositoryImpl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/UsersDomain/Sources/Repository/UsersRepositoryImpl.swift -------------------------------------------------------------------------------- /Projects/Domain/UsersDomain/Sources/UseCase/ChangePasswordUseCaseImpl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/UsersDomain/Sources/UseCase/ChangePasswordUseCaseImpl.swift -------------------------------------------------------------------------------- /Projects/Domain/UsersDomain/Sources/UseCase/CompareCurrentPasswordUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/UsersDomain/Sources/UseCase/CompareCurrentPasswordUseCase.swift -------------------------------------------------------------------------------- /Projects/Domain/UsersDomain/Testing/RemoteUsersDataSourceStub.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/UsersDomain/Testing/RemoteUsersDataSourceStub.swift -------------------------------------------------------------------------------- /Projects/Domain/UsersDomain/Testing/Testing.swift: -------------------------------------------------------------------------------- 1 | // This is for Tuist 2 | -------------------------------------------------------------------------------- /Projects/Domain/UsersDomain/Testing/UsersRepositoryStub.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/UsersDomain/Testing/UsersRepositoryStub.swift -------------------------------------------------------------------------------- /Projects/Domain/UsersDomain/Tests/UsersDomainTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Domain/UsersDomain/Tests/UsersDomainTest.swift -------------------------------------------------------------------------------- /Projects/Feature/ApplyFeature/Derived/InfoPlists/ApplyFeatureInterface-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Feature/ApplyFeature/Derived/InfoPlists/ApplyFeatureInterface-Info.plist -------------------------------------------------------------------------------- /Projects/Feature/ApplyFeature/Derived/InfoPlists/ApplyFeatureTests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Feature/ApplyFeature/Derived/InfoPlists/ApplyFeatureTests-Info.plist -------------------------------------------------------------------------------- /Projects/Feature/ApplyFeature/Interface/ApplyPageFactory.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Feature/ApplyFeature/Interface/ApplyPageFactory.swift -------------------------------------------------------------------------------- /Projects/Feature/ApplyFeature/Project.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Feature/ApplyFeature/Project.swift -------------------------------------------------------------------------------- /Projects/Feature/ApplyFeature/Sources/ApplyPage/ApplyPageComponent.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Feature/ApplyFeature/Sources/ApplyPage/ApplyPageComponent.swift -------------------------------------------------------------------------------- /Projects/Feature/ApplyFeature/Sources/ApplyPage/ApplyPageView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Feature/ApplyFeature/Sources/ApplyPage/ApplyPageView.swift -------------------------------------------------------------------------------- /Projects/Feature/ApplyFeature/Sources/ApplyPage/ApplyPageViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Feature/ApplyFeature/Sources/ApplyPage/ApplyPageViewModel.swift -------------------------------------------------------------------------------- /Projects/Feature/ApplyFeature/Sources/ApplyPage/Component/ApplyListCellView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Feature/ApplyFeature/Sources/ApplyPage/Component/ApplyListCellView.swift -------------------------------------------------------------------------------- /Projects/Feature/ApplyFeature/Tests/TargetTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Feature/ApplyFeature/Tests/TargetTests.swift -------------------------------------------------------------------------------- /Projects/Feature/BaseFeature/Derived/InfoPlists/BaseFeature-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Feature/BaseFeature/Derived/InfoPlists/BaseFeature-Info.plist -------------------------------------------------------------------------------- /Projects/Feature/BaseFeature/Derived/InfoPlists/BaseFeatureTests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Feature/BaseFeature/Derived/InfoPlists/BaseFeatureTests-Info.plist -------------------------------------------------------------------------------- /Projects/Feature/BaseFeature/Project.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Feature/BaseFeature/Project.swift -------------------------------------------------------------------------------- /Projects/Feature/BaseFeature/Sources/AppState.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Feature/BaseFeature/Sources/AppState.swift -------------------------------------------------------------------------------- /Projects/Feature/BaseFeature/Sources/BaseViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Feature/BaseFeature/Sources/BaseViewModel.swift -------------------------------------------------------------------------------- /Projects/Feature/BaseFeature/Sources/DMSSelectionTab.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Feature/BaseFeature/Sources/DMSSelectionTab.swift -------------------------------------------------------------------------------- /Projects/Feature/BaseFeature/Sources/EnvironmentValues/RootPresentationMode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Feature/BaseFeature/Sources/EnvironmentValues/RootPresentationMode.swift -------------------------------------------------------------------------------- /Projects/Feature/BaseFeature/Sources/HideKeyboard.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Feature/BaseFeature/Sources/HideKeyboard.swift -------------------------------------------------------------------------------- /Projects/Feature/BaseFeature/Sources/SceneFlow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Feature/BaseFeature/Sources/SceneFlow.swift -------------------------------------------------------------------------------- /Projects/Feature/BaseFeature/Sources/TabFlow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Feature/BaseFeature/Sources/TabFlow.swift -------------------------------------------------------------------------------- /Projects/Feature/BaseFeature/Sources/TabbarHidden.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Feature/BaseFeature/Sources/TabbarHidden.swift -------------------------------------------------------------------------------- /Projects/Feature/BaseFeature/Tests/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Projects/Feature/BaseFeature/Tests/TargetTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Feature/BaseFeature/Tests/TargetTest.swift -------------------------------------------------------------------------------- /Projects/Feature/FindIDFeature/Derived/InfoPlists/FindIDFeatureTests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Feature/FindIDFeature/Derived/InfoPlists/FindIDFeatureTests-Info.plist -------------------------------------------------------------------------------- /Projects/Feature/FindIDFeature/Interface/FindIDFactory.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Feature/FindIDFeature/Interface/FindIDFactory.swift -------------------------------------------------------------------------------- /Projects/Feature/FindIDFeature/Project.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Feature/FindIDFeature/Project.swift -------------------------------------------------------------------------------- /Projects/Feature/FindIDFeature/Sources/Component/SchoolSelectButtonView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Feature/FindIDFeature/Sources/Component/SchoolSelectButtonView.swift -------------------------------------------------------------------------------- /Projects/Feature/FindIDFeature/Sources/FindIDComponent.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Feature/FindIDFeature/Sources/FindIDComponent.swift -------------------------------------------------------------------------------- /Projects/Feature/FindIDFeature/Sources/FindIDView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Feature/FindIDFeature/Sources/FindIDView.swift -------------------------------------------------------------------------------- /Projects/Feature/FindIDFeature/Sources/FindIDViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Feature/FindIDFeature/Sources/FindIDViewModel.swift -------------------------------------------------------------------------------- /Projects/Feature/FindIDFeature/Tests/TargetTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Feature/FindIDFeature/Tests/TargetTests.swift -------------------------------------------------------------------------------- /Projects/Feature/HomeFeature/Derived/InfoPlists/HomeFeatureInterface-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Feature/HomeFeature/Derived/InfoPlists/HomeFeatureInterface-Info.plist -------------------------------------------------------------------------------- /Projects/Feature/HomeFeature/Derived/InfoPlists/HomeFeatureTests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Feature/HomeFeature/Derived/InfoPlists/HomeFeatureTests-Info.plist -------------------------------------------------------------------------------- /Projects/Feature/HomeFeature/Interface/HomeFactory.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Feature/HomeFeature/Interface/HomeFactory.swift -------------------------------------------------------------------------------- /Projects/Feature/HomeFeature/Project.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Feature/HomeFeature/Project.swift -------------------------------------------------------------------------------- /Projects/Feature/HomeFeature/Sources/Component/CalendarSheetModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Feature/HomeFeature/Sources/Component/CalendarSheetModel.swift -------------------------------------------------------------------------------- /Projects/Feature/HomeFeature/Sources/Component/CalendarSheetView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Feature/HomeFeature/Sources/Component/CalendarSheetView.swift -------------------------------------------------------------------------------- /Projects/Feature/HomeFeature/Sources/Component/MealCarouselView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Feature/HomeFeature/Sources/Component/MealCarouselView.swift -------------------------------------------------------------------------------- /Projects/Feature/HomeFeature/Sources/Component/NoticeView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Feature/HomeFeature/Sources/Component/NoticeView.swift -------------------------------------------------------------------------------- /Projects/Feature/HomeFeature/Sources/HomeComponent.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Feature/HomeFeature/Sources/HomeComponent.swift -------------------------------------------------------------------------------- /Projects/Feature/HomeFeature/Sources/HomeView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Feature/HomeFeature/Sources/HomeView.swift -------------------------------------------------------------------------------- /Projects/Feature/HomeFeature/Sources/HomeViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Feature/HomeFeature/Sources/HomeViewModel.swift -------------------------------------------------------------------------------- /Projects/Feature/HomeFeature/Tests/TargetTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Feature/HomeFeature/Tests/TargetTests.swift -------------------------------------------------------------------------------- /Projects/Feature/MainTabFeature/Derived/InfoPlists/MainTabFeatureTests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Feature/MainTabFeature/Derived/InfoPlists/MainTabFeatureTests-Info.plist -------------------------------------------------------------------------------- /Projects/Feature/MainTabFeature/Interface/MainTabFactory.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Feature/MainTabFeature/Interface/MainTabFactory.swift -------------------------------------------------------------------------------- /Projects/Feature/MainTabFeature/Project.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Feature/MainTabFeature/Project.swift -------------------------------------------------------------------------------- /Projects/Feature/MainTabFeature/Sources/MainTabComponent.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Feature/MainTabFeature/Sources/MainTabComponent.swift -------------------------------------------------------------------------------- /Projects/Feature/MainTabFeature/Sources/MainTabView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Feature/MainTabFeature/Sources/MainTabView.swift -------------------------------------------------------------------------------- /Projects/Feature/MainTabFeature/Tests/TargetTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Feature/MainTabFeature/Tests/TargetTests.swift -------------------------------------------------------------------------------- /Projects/Feature/MyPageFeature/Derived/InfoPlists/MyPageFeatureTests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Feature/MyPageFeature/Derived/InfoPlists/MyPageFeatureTests-Info.plist -------------------------------------------------------------------------------- /Projects/Feature/MyPageFeature/Interface/ChangeProfileFactory.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Feature/MyPageFeature/Interface/ChangeProfileFactory.swift -------------------------------------------------------------------------------- /Projects/Feature/MyPageFeature/Interface/CheckPasswordFactory.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Feature/MyPageFeature/Interface/CheckPasswordFactory.swift -------------------------------------------------------------------------------- /Projects/Feature/MyPageFeature/Interface/ModifyPasswordFactory.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Feature/MyPageFeature/Interface/ModifyPasswordFactory.swift -------------------------------------------------------------------------------- /Projects/Feature/MyPageFeature/Interface/MyPageFactory.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Feature/MyPageFeature/Interface/MyPageFactory.swift -------------------------------------------------------------------------------- /Projects/Feature/MyPageFeature/Interface/RewardPointDetailFactory.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Feature/MyPageFeature/Interface/RewardPointDetailFactory.swift -------------------------------------------------------------------------------- /Projects/Feature/MyPageFeature/Interface/SetNotificationFactory.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Feature/MyPageFeature/Interface/SetNotificationFactory.swift -------------------------------------------------------------------------------- /Projects/Feature/MyPageFeature/Project.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Feature/MyPageFeature/Project.swift -------------------------------------------------------------------------------- /Projects/Feature/MyPageFeature/Sources/ChangeProfile/ChangeProfileComponent.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Feature/MyPageFeature/Sources/ChangeProfile/ChangeProfileComponent.swift -------------------------------------------------------------------------------- /Projects/Feature/MyPageFeature/Sources/ChangeProfile/ChangeProfileView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Feature/MyPageFeature/Sources/ChangeProfile/ChangeProfileView.swift -------------------------------------------------------------------------------- /Projects/Feature/MyPageFeature/Sources/ChangeProfile/ChangeProfileViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Feature/MyPageFeature/Sources/ChangeProfile/ChangeProfileViewModel.swift -------------------------------------------------------------------------------- /Projects/Feature/MyPageFeature/Sources/CheckPassword/CheckPasswordComponent.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Feature/MyPageFeature/Sources/CheckPassword/CheckPasswordComponent.swift -------------------------------------------------------------------------------- /Projects/Feature/MyPageFeature/Sources/CheckPassword/CheckPasswordView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Feature/MyPageFeature/Sources/CheckPassword/CheckPasswordView.swift -------------------------------------------------------------------------------- /Projects/Feature/MyPageFeature/Sources/CheckPassword/CheckPasswordViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Feature/MyPageFeature/Sources/CheckPassword/CheckPasswordViewModel.swift -------------------------------------------------------------------------------- /Projects/Feature/MyPageFeature/Sources/ModifyPassword/ModifyPasswordView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Feature/MyPageFeature/Sources/ModifyPassword/ModifyPasswordView.swift -------------------------------------------------------------------------------- /Projects/Feature/MyPageFeature/Sources/MyPage/Component/RewardPointCardView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Feature/MyPageFeature/Sources/MyPage/Component/RewardPointCardView.swift -------------------------------------------------------------------------------- /Projects/Feature/MyPageFeature/Sources/MyPage/MyPageComponent.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Feature/MyPageFeature/Sources/MyPage/MyPageComponent.swift -------------------------------------------------------------------------------- /Projects/Feature/MyPageFeature/Sources/MyPage/MyPageView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Feature/MyPageFeature/Sources/MyPage/MyPageView.swift -------------------------------------------------------------------------------- /Projects/Feature/MyPageFeature/Sources/MyPage/MyPageViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Feature/MyPageFeature/Sources/MyPage/MyPageViewModel.swift -------------------------------------------------------------------------------- /Projects/Feature/MyPageFeature/Sources/SetNotification/SetNotificationView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Feature/MyPageFeature/Sources/SetNotification/SetNotificationView.swift -------------------------------------------------------------------------------- /Projects/Feature/MyPageFeature/Tests/TargetTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Feature/MyPageFeature/Tests/TargetTests.swift -------------------------------------------------------------------------------- /Projects/Feature/NoticeFeature/Derived/InfoPlists/NoticeFeatureTests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Feature/NoticeFeature/Derived/InfoPlists/NoticeFeatureTests-Info.plist -------------------------------------------------------------------------------- /Projects/Feature/NoticeFeature/Interface/NoticeDetailFactory.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Feature/NoticeFeature/Interface/NoticeDetailFactory.swift -------------------------------------------------------------------------------- /Projects/Feature/NoticeFeature/Interface/NoticeListFactory.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Feature/NoticeFeature/Interface/NoticeListFactory.swift -------------------------------------------------------------------------------- /Projects/Feature/NoticeFeature/Project.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Feature/NoticeFeature/Project.swift -------------------------------------------------------------------------------- /Projects/Feature/NoticeFeature/Sources/Detail/NoticeDetailComponent.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Feature/NoticeFeature/Sources/Detail/NoticeDetailComponent.swift -------------------------------------------------------------------------------- /Projects/Feature/NoticeFeature/Sources/Detail/NoticeDetailView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Feature/NoticeFeature/Sources/Detail/NoticeDetailView.swift -------------------------------------------------------------------------------- /Projects/Feature/NoticeFeature/Sources/Detail/NoticeDetailViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Feature/NoticeFeature/Sources/Detail/NoticeDetailViewModel.swift -------------------------------------------------------------------------------- /Projects/Feature/NoticeFeature/Sources/NoticeList/NoticeListComponent.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Feature/NoticeFeature/Sources/NoticeList/NoticeListComponent.swift -------------------------------------------------------------------------------- /Projects/Feature/NoticeFeature/Sources/NoticeList/NoticeListView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Feature/NoticeFeature/Sources/NoticeList/NoticeListView.swift -------------------------------------------------------------------------------- /Projects/Feature/NoticeFeature/Sources/NoticeList/NoticeListViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Feature/NoticeFeature/Sources/NoticeList/NoticeListViewModel.swift -------------------------------------------------------------------------------- /Projects/Feature/NoticeFeature/Sources/NoticeList/NoticeOrderButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Feature/NoticeFeature/Sources/NoticeList/NoticeOrderButton.swift -------------------------------------------------------------------------------- /Projects/Feature/NoticeFeature/Tests/TargetTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Feature/NoticeFeature/Tests/TargetTests.swift -------------------------------------------------------------------------------- /Projects/Feature/OutingApplyFeature/Interface/OutingApplyFactory.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Feature/OutingApplyFeature/Interface/OutingApplyFactory.swift -------------------------------------------------------------------------------- /Projects/Feature/OutingApplyFeature/Interface/OutingCheckFactory.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Feature/OutingApplyFeature/Interface/OutingCheckFactory.swift -------------------------------------------------------------------------------- /Projects/Feature/OutingApplyFeature/Project.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Feature/OutingApplyFeature/Project.swift -------------------------------------------------------------------------------- /Projects/Feature/OutingApplyFeature/Sources/Component/OutingApplyNoticeView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Feature/OutingApplyFeature/Sources/Component/OutingApplyNoticeView.swift -------------------------------------------------------------------------------- /Projects/Feature/OutingApplyFeature/Sources/Component/OutingTextFieldView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Feature/OutingApplyFeature/Sources/Component/OutingTextFieldView.swift -------------------------------------------------------------------------------- /Projects/Feature/OutingApplyFeature/Sources/Component/SelectStudentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Feature/OutingApplyFeature/Sources/Component/SelectStudentView.swift -------------------------------------------------------------------------------- /Projects/Feature/OutingApplyFeature/Sources/OutingCheck/OutingCheckView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Feature/OutingApplyFeature/Sources/OutingCheck/OutingCheckView.swift -------------------------------------------------------------------------------- /Projects/Feature/OutingApplyFeature/Tests/Project.swift: -------------------------------------------------------------------------------- 1 | // This is for tuist 2 | -------------------------------------------------------------------------------- /Projects/Feature/RemainApplyFeature/Interface/RemainApplyFactory.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Feature/RemainApplyFeature/Interface/RemainApplyFactory.swift -------------------------------------------------------------------------------- /Projects/Feature/RemainApplyFeature/Project.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Feature/RemainApplyFeature/Project.swift -------------------------------------------------------------------------------- /Projects/Feature/RemainApplyFeature/Sources/Component/RemainApplyListView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Feature/RemainApplyFeature/Sources/Component/RemainApplyListView.swift -------------------------------------------------------------------------------- /Projects/Feature/RemainApplyFeature/Sources/RemainApplyComponent.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Feature/RemainApplyFeature/Sources/RemainApplyComponent.swift -------------------------------------------------------------------------------- /Projects/Feature/RemainApplyFeature/Sources/RemainApplyView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Feature/RemainApplyFeature/Sources/RemainApplyView.swift -------------------------------------------------------------------------------- /Projects/Feature/RemainApplyFeature/Sources/RemainApplyViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Feature/RemainApplyFeature/Sources/RemainApplyViewModel.swift -------------------------------------------------------------------------------- /Projects/Feature/RemainApplyFeature/Tests/TargetTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Feature/RemainApplyFeature/Tests/TargetTests.swift -------------------------------------------------------------------------------- /Projects/Feature/RenewalPasswordFeature/Project.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Feature/RenewalPasswordFeature/Project.swift -------------------------------------------------------------------------------- /Projects/Feature/RenewalPasswordFeature/Tests/TargetTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Feature/RenewalPasswordFeature/Tests/TargetTests.swift -------------------------------------------------------------------------------- /Projects/Feature/RootFeature/Project.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Feature/RootFeature/Project.swift -------------------------------------------------------------------------------- /Projects/Feature/RootFeature/Sources/RootComponent.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Feature/RootFeature/Sources/RootComponent.swift -------------------------------------------------------------------------------- /Projects/Feature/RootFeature/Sources/RootView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Feature/RootFeature/Sources/RootView.swift -------------------------------------------------------------------------------- /Projects/Feature/RootFeature/Tests/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Projects/Feature/RootFeature/Tests/TargetTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Feature/RootFeature/Tests/TargetTest.swift -------------------------------------------------------------------------------- /Projects/Feature/SigninFeature/Derived/InfoPlists/SigninFeatureTests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Feature/SigninFeature/Derived/InfoPlists/SigninFeatureTests-Info.plist -------------------------------------------------------------------------------- /Projects/Feature/SigninFeature/Interface/SigninFactory.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Feature/SigninFeature/Interface/SigninFactory.swift -------------------------------------------------------------------------------- /Projects/Feature/SigninFeature/Project.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Feature/SigninFeature/Project.swift -------------------------------------------------------------------------------- /Projects/Feature/SigninFeature/Sources/SigninComponent.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Feature/SigninFeature/Sources/SigninComponent.swift -------------------------------------------------------------------------------- /Projects/Feature/SigninFeature/Sources/SigninView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Feature/SigninFeature/Sources/SigninView.swift -------------------------------------------------------------------------------- /Projects/Feature/SigninFeature/Sources/SigninViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Feature/SigninFeature/Sources/SigninViewModel.swift -------------------------------------------------------------------------------- /Projects/Feature/SigninFeature/Tests/SigninViewModelSpec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Feature/SigninFeature/Tests/SigninViewModelSpec.swift -------------------------------------------------------------------------------- /Projects/Feature/SignupFeature/Derived/InfoPlists/SignupFeatureTests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Feature/SignupFeature/Derived/InfoPlists/SignupFeatureTests-Info.plist -------------------------------------------------------------------------------- /Projects/Feature/SignupFeature/Interface/Factory/IDSettingFactory.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Feature/SignupFeature/Interface/Factory/IDSettingFactory.swift -------------------------------------------------------------------------------- /Projects/Feature/SignupFeature/Interface/Factory/SchoolCodeFactory.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Feature/SignupFeature/Interface/Factory/SchoolCodeFactory.swift -------------------------------------------------------------------------------- /Projects/Feature/SignupFeature/Interface/Factory/SignupEmailVerifyFactory.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Feature/SignupFeature/Interface/Factory/SignupEmailVerifyFactory.swift -------------------------------------------------------------------------------- /Projects/Feature/SignupFeature/Interface/Factory/SignupPasswordFactory.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Feature/SignupFeature/Interface/Factory/SignupPasswordFactory.swift -------------------------------------------------------------------------------- /Projects/Feature/SignupFeature/Interface/Factory/SignupTermsFactory.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Feature/SignupFeature/Interface/Factory/SignupTermsFactory.swift -------------------------------------------------------------------------------- /Projects/Feature/SignupFeature/Interface/Param/IDSettingParam.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Feature/SignupFeature/Interface/Param/IDSettingParam.swift -------------------------------------------------------------------------------- /Projects/Feature/SignupFeature/Interface/Param/SignupEmailVerifyParam.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Feature/SignupFeature/Interface/Param/SignupEmailVerifyParam.swift -------------------------------------------------------------------------------- /Projects/Feature/SignupFeature/Interface/Param/SignupPasswordParam.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Feature/SignupFeature/Interface/Param/SignupPasswordParam.swift -------------------------------------------------------------------------------- /Projects/Feature/SignupFeature/Interface/Param/SignupProfileImageParam.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Feature/SignupFeature/Interface/Param/SignupProfileImageParam.swift -------------------------------------------------------------------------------- /Projects/Feature/SignupFeature/Interface/Param/SignupTermsParam.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Feature/SignupFeature/Interface/Param/SignupTermsParam.swift -------------------------------------------------------------------------------- /Projects/Feature/SignupFeature/Project.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Feature/SignupFeature/Project.swift -------------------------------------------------------------------------------- /Projects/Feature/SignupFeature/Sources/IDSetting/IDSettingComponent.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Feature/SignupFeature/Sources/IDSetting/IDSettingComponent.swift -------------------------------------------------------------------------------- /Projects/Feature/SignupFeature/Sources/IDSetting/IDSettingView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Feature/SignupFeature/Sources/IDSetting/IDSettingView.swift -------------------------------------------------------------------------------- /Projects/Feature/SignupFeature/Sources/IDSetting/IDSettingViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Feature/SignupFeature/Sources/IDSetting/IDSettingViewModel.swift -------------------------------------------------------------------------------- /Projects/Feature/SignupFeature/Sources/SchoolCode/SchoolCodeComponent.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Feature/SignupFeature/Sources/SchoolCode/SchoolCodeComponent.swift -------------------------------------------------------------------------------- /Projects/Feature/SignupFeature/Sources/SchoolCode/SchoolCodeView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Feature/SignupFeature/Sources/SchoolCode/SchoolCodeView.swift -------------------------------------------------------------------------------- /Projects/Feature/SignupFeature/Sources/SchoolCode/SchoolCodeViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Feature/SignupFeature/Sources/SchoolCode/SchoolCodeViewModel.swift -------------------------------------------------------------------------------- /Projects/Feature/SignupFeature/Sources/SignupPassword/SignupPasswordView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Feature/SignupFeature/Sources/SignupPassword/SignupPasswordView.swift -------------------------------------------------------------------------------- /Projects/Feature/SignupFeature/Sources/SignupTerms/SignupTermsComponent.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Feature/SignupFeature/Sources/SignupTerms/SignupTermsComponent.swift -------------------------------------------------------------------------------- /Projects/Feature/SignupFeature/Sources/SignupTerms/SignupTermsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Feature/SignupFeature/Sources/SignupTerms/SignupTermsView.swift -------------------------------------------------------------------------------- /Projects/Feature/SignupFeature/Sources/SignupTerms/SignupTermsViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Feature/SignupFeature/Sources/SignupTerms/SignupTermsViewModel.swift -------------------------------------------------------------------------------- /Projects/Feature/SignupFeature/Tests/TargetTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Feature/SignupFeature/Tests/TargetTests.swift -------------------------------------------------------------------------------- /Projects/Feature/SplashFeature/Derived/InfoPlists/SplashFeatureTests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Feature/SplashFeature/Derived/InfoPlists/SplashFeatureTests-Info.plist -------------------------------------------------------------------------------- /Projects/Feature/SplashFeature/Interface/SplashFactory.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Feature/SplashFeature/Interface/SplashFactory.swift -------------------------------------------------------------------------------- /Projects/Feature/SplashFeature/Project.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Feature/SplashFeature/Project.swift -------------------------------------------------------------------------------- /Projects/Feature/SplashFeature/Sources/SplashComponent.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Feature/SplashFeature/Sources/SplashComponent.swift -------------------------------------------------------------------------------- /Projects/Feature/SplashFeature/Sources/SplashView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Feature/SplashFeature/Sources/SplashView.swift -------------------------------------------------------------------------------- /Projects/Feature/SplashFeature/Sources/SplashViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Feature/SplashFeature/Sources/SplashViewModel.swift -------------------------------------------------------------------------------- /Projects/Feature/SplashFeature/Tests/TargetTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Feature/SplashFeature/Tests/TargetTests.swift -------------------------------------------------------------------------------- /Projects/Feature/StudyRoomFeature/Interface/Factory/StudyRoomListFactory.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Feature/StudyRoomFeature/Interface/Factory/StudyRoomListFactory.swift -------------------------------------------------------------------------------- /Projects/Feature/StudyRoomFeature/Interface/Param/StudyRoomParam.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Feature/StudyRoomFeature/Interface/Param/StudyRoomParam.swift -------------------------------------------------------------------------------- /Projects/Feature/StudyRoomFeature/Project.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Feature/StudyRoomFeature/Project.swift -------------------------------------------------------------------------------- /Projects/Feature/StudyRoomFeature/Sources/Component/StudyRoomListCellView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Feature/StudyRoomFeature/Sources/Component/StudyRoomListCellView.swift -------------------------------------------------------------------------------- /Projects/Feature/StudyRoomFeature/Sources/Component/StudyRoomNoticeView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Feature/StudyRoomFeature/Sources/Component/StudyRoomNoticeView.swift -------------------------------------------------------------------------------- /Projects/Feature/StudyRoomFeature/Tests/TargetTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Feature/StudyRoomFeature/Tests/TargetTests.swift -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Derived/InfoPlists/DesignSystem-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Shared/DesignSystem/Derived/InfoPlists/DesignSystem-Info.plist -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Derived/Sources/TuistAssets+DesignSystem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Shared/DesignSystem/Derived/Sources/TuistAssets+DesignSystem.swift -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Derived/Sources/TuistBundle+DesignSystem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Shared/DesignSystem/Derived/Sources/TuistBundle+DesignSystem.swift -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Derived/Sources/TuistFonts+DesignSystem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Shared/DesignSystem/Derived/Sources/TuistFonts+DesignSystem.swift -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Project.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Shared/DesignSystem/Project.swift -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Resources/ErrorColor.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Shared/DesignSystem/Resources/ErrorColor.xcassets/Contents.json -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Resources/Fonts/NotoSansKR/NotoSansKR-Black.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Shared/DesignSystem/Resources/Fonts/NotoSansKR/NotoSansKR-Black.otf -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Resources/Fonts/NotoSansKR/NotoSansKR-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Shared/DesignSystem/Resources/Fonts/NotoSansKR/NotoSansKR-Bold.otf -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Resources/Fonts/NotoSansKR/NotoSansKR-Light.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Shared/DesignSystem/Resources/Fonts/NotoSansKR/NotoSansKR-Light.otf -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Resources/Fonts/NotoSansKR/NotoSansKR-Medium.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Shared/DesignSystem/Resources/Fonts/NotoSansKR/NotoSansKR-Medium.otf -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Resources/Fonts/NotoSansKR/NotoSansKR-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Shared/DesignSystem/Resources/Fonts/NotoSansKR/NotoSansKR-Regular.otf -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Resources/Fonts/NotoSansKR/NotoSansKR-Thin.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Shared/DesignSystem/Resources/Fonts/NotoSansKR/NotoSansKR-Thin.otf -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Resources/GrayColor.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Shared/DesignSystem/Resources/GrayColor.xcassets/Contents.json -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Resources/Icons.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Shared/DesignSystem/Resources/Icons.xcassets/Contents.json -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Resources/PrimaryColor.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Shared/DesignSystem/Resources/PrimaryColor.xcassets/Contents.json -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Resources/SystemColor.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Shared/DesignSystem/Resources/SystemColor.xcassets/Contents.json -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Sources/ActionSheet/DMSActionSheet.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Shared/DesignSystem/Sources/ActionSheet/DMSActionSheet.swift -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Sources/BottomSheet/DMSBottomSheet.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Shared/DesignSystem/Sources/BottomSheet/DMSBottomSheet.swift -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Sources/Button/Default/DMSButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Shared/DesignSystem/Sources/Button/Default/DMSButton.swift -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Sources/Button/Default/DMSButtonStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Shared/DesignSystem/Sources/Button/Default/DMSButtonStyle.swift -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Sources/Button/Wide/DMSWideButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Shared/DesignSystem/Sources/Button/Wide/DMSWideButton.swift -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Sources/Button/Wide/DMSWideButtonStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Shared/DesignSystem/Sources/Button/Wide/DMSWideButtonStyle.swift -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Sources/CameraPicker/CameraPicker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Shared/DesignSystem/Sources/CameraPicker/CameraPicker.swift -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Sources/Carousel/Carousel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Shared/DesignSystem/Sources/Carousel/Carousel.swift -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Sources/Carousel/CarouselCanvas.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Shared/DesignSystem/Sources/Carousel/CarouselCanvas.swift -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Sources/Carousel/UIStateModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Shared/DesignSystem/Sources/Carousel/UIStateModel.swift -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Sources/CheckBox/DMSCheckBox.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Shared/DesignSystem/Sources/CheckBox/DMSCheckBox.swift -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Sources/CheckBox/DMSCheckBoxStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Shared/DesignSystem/Sources/CheckBox/DMSCheckBoxStyle.swift -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Sources/Color/Color+DeisgnSystemsColor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Shared/DesignSystem/Sources/Color/Color+DeisgnSystemsColor.swift -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Sources/Color/DMSErrorColor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Shared/DesignSystem/Sources/Color/DMSErrorColor.swift -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Sources/Color/DMSGrayScaleColor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Shared/DesignSystem/Sources/Color/DMSGrayScaleColor.swift -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Sources/Color/DMSPrimaryColor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Shared/DesignSystem/Sources/Color/DMSPrimaryColor.swift -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Sources/Color/DMSSystemColor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Shared/DesignSystem/Sources/Color/DMSSystemColor.swift -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Sources/Component/Common/DMSHeaderView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Shared/DesignSystem/Sources/Component/Common/DMSHeaderView.swift -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Sources/Extensions/View+cornerRadius.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Shared/DesignSystem/Sources/Extensions/View+cornerRadius.swift -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Sources/Extensions/View+dmsBackButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Shared/DesignSystem/Sources/Extensions/View+dmsBackButton.swift -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Sources/Extensions/View+dmsBackground.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Shared/DesignSystem/Sources/Extensions/View+dmsBackground.swift -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Sources/Extensions/View+if.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Shared/DesignSystem/Sources/Extensions/View+if.swift -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Sources/Extensions/View+navigate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Shared/DesignSystem/Sources/Extensions/View+navigate.swift -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Sources/Extensions/View+shadow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Shared/DesignSystem/Sources/Extensions/View+shadow.swift -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Sources/Image/DMSImage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Shared/DesignSystem/Sources/Image/DMSImage.swift -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Sources/ImagePicker/ImagePicker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Shared/DesignSystem/Sources/ImagePicker/ImagePicker.swift -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Sources/PassCode/DMSPassCodeView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Shared/DesignSystem/Sources/PassCode/DMSPassCodeView.swift -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Sources/Playground/Views/ColorPlaygroundView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Shared/DesignSystem/Sources/Playground/Views/ColorPlaygroundView.swift -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Sources/Playground/Views/FontPlaygroundView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Shared/DesignSystem/Sources/Playground/Views/FontPlaygroundView.swift -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Sources/Playground/Views/ToastPlaygroundView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Shared/DesignSystem/Sources/Playground/Views/ToastPlaygroundView.swift -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Sources/Progress/DMSProgress.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Shared/DesignSystem/Sources/Progress/DMSProgress.swift -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Sources/RadioButton/DMSRadioButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Shared/DesignSystem/Sources/RadioButton/DMSRadioButton.swift -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Sources/Shadow/DMSShadow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Shared/DesignSystem/Sources/Shadow/DMSShadow.swift -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Sources/Shadow/DMSShadowStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Shared/DesignSystem/Sources/Shadow/DMSShadowStyle.swift -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Sources/Switch/DMSSwitch.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Shared/DesignSystem/Sources/Switch/DMSSwitch.swift -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Sources/TextField/Form/DMSFormTextEditor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Shared/DesignSystem/Sources/TextField/Form/DMSFormTextEditor.swift -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Sources/TextField/Form/DMSFormTextField.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Shared/DesignSystem/Sources/TextField/Form/DMSFormTextField.swift -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Sources/Toast/DmsToast.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Shared/DesignSystem/Sources/Toast/DmsToast.swift -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Sources/Toast/DmsToastStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Shared/DesignSystem/Sources/Toast/DmsToastStyle.swift -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Sources/Typography/DMSFont.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Shared/DesignSystem/Sources/Typography/DMSFont.swift -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Sources/Typography/DMSFontStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Shared/DesignSystem/Sources/Typography/DMSFontStyle.swift -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Sources/WebView/DMSWebView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Shared/DesignSystem/Sources/WebView/DMSWebView.swift -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Tests/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Tests/TargetTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Shared/DesignSystem/Tests/TargetTest.swift -------------------------------------------------------------------------------- /Projects/Shared/GlobalThirdPartyLibrary/Project.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Shared/GlobalThirdPartyLibrary/Project.swift -------------------------------------------------------------------------------- /Projects/Shared/GlobalThirdPartyLibrary/Sources/ThirdPartyLibrary.swift: -------------------------------------------------------------------------------- 1 | // this is for tuist 2 | -------------------------------------------------------------------------------- /Projects/Shared/UtilityModule/Derived/InfoPlists/UtilityModule-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Shared/UtilityModule/Derived/InfoPlists/UtilityModule-Info.plist -------------------------------------------------------------------------------- /Projects/Shared/UtilityModule/Derived/InfoPlists/UtilityModuleTests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Shared/UtilityModule/Derived/InfoPlists/UtilityModuleTests-Info.plist -------------------------------------------------------------------------------- /Projects/Shared/UtilityModule/Project.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Shared/UtilityModule/Project.swift -------------------------------------------------------------------------------- /Projects/Shared/UtilityModule/Sources/DateUtil.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Shared/UtilityModule/Sources/DateUtil.swift -------------------------------------------------------------------------------- /Projects/Shared/UtilityModule/Sources/GenerateSkeletonDummy.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Shared/UtilityModule/Sources/GenerateSkeletonDummy.swift -------------------------------------------------------------------------------- /Projects/Shared/UtilityModule/Sources/HexColor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Shared/UtilityModule/Sources/HexColor.swift -------------------------------------------------------------------------------- /Projects/Shared/UtilityModule/Sources/HideTabbar.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Shared/UtilityModule/Sources/HideTabbar.swift -------------------------------------------------------------------------------- /Projects/Shared/UtilityModule/Sources/NavigationUtil.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Shared/UtilityModule/Sources/NavigationUtil.swift -------------------------------------------------------------------------------- /Projects/Shared/UtilityModule/Sources/RegexUtil.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Shared/UtilityModule/Sources/RegexUtil.swift -------------------------------------------------------------------------------- /Projects/Shared/UtilityModule/Sources/ShakeUtil.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Shared/UtilityModule/Sources/ShakeUtil.swift -------------------------------------------------------------------------------- /Projects/Shared/UtilityModule/Sources/ViewUtil.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Shared/UtilityModule/Sources/ViewUtil.swift -------------------------------------------------------------------------------- /Projects/Shared/UtilityModule/Tests/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Projects/Shared/UtilityModule/Tests/TargetTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Shared/UtilityModule/Tests/TargetTest.swift -------------------------------------------------------------------------------- /Projects/Shared/WatchDesignSystem/Project.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Shared/WatchDesignSystem/Project.swift -------------------------------------------------------------------------------- /Projects/Shared/WatchDesignSystem/Resources/ErrorColor.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Shared/WatchDesignSystem/Resources/ErrorColor.xcassets/Contents.json -------------------------------------------------------------------------------- /Projects/Shared/WatchDesignSystem/Resources/GrayColor.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Shared/WatchDesignSystem/Resources/GrayColor.xcassets/Contents.json -------------------------------------------------------------------------------- /Projects/Shared/WatchDesignSystem/Resources/Icons.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Shared/WatchDesignSystem/Resources/Icons.xcassets/Contents.json -------------------------------------------------------------------------------- /Projects/Shared/WatchDesignSystem/Resources/PrimaryColor.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Shared/WatchDesignSystem/Resources/PrimaryColor.xcassets/Contents.json -------------------------------------------------------------------------------- /Projects/Shared/WatchDesignSystem/Resources/SystemColor.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Shared/WatchDesignSystem/Resources/SystemColor.xcassets/Contents.json -------------------------------------------------------------------------------- /Projects/Shared/WatchDesignSystem/Sources/Color/DMSErrorColor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Shared/WatchDesignSystem/Sources/Color/DMSErrorColor.swift -------------------------------------------------------------------------------- /Projects/Shared/WatchDesignSystem/Sources/Color/DMSGrayScaleColor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Shared/WatchDesignSystem/Sources/Color/DMSGrayScaleColor.swift -------------------------------------------------------------------------------- /Projects/Shared/WatchDesignSystem/Sources/Color/DMSPrimaryColor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Shared/WatchDesignSystem/Sources/Color/DMSPrimaryColor.swift -------------------------------------------------------------------------------- /Projects/Shared/WatchDesignSystem/Sources/Color/DMSSystemColor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Shared/WatchDesignSystem/Sources/Color/DMSSystemColor.swift -------------------------------------------------------------------------------- /Projects/Shared/WatchDesignSystem/Sources/Typography/DMSFont.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Shared/WatchDesignSystem/Sources/Typography/DMSFont.swift -------------------------------------------------------------------------------- /Projects/Shared/WatchDesignSystem/Sources/Typography/DMSFontStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Shared/WatchDesignSystem/Sources/Typography/DMSFontStyle.swift -------------------------------------------------------------------------------- /Projects/Shared/WatchDesignSystem/Tests/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Projects/Shared/WatchDesignSystem/Tests/TargetTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Shared/WatchDesignSystem/Tests/TargetTest.swift -------------------------------------------------------------------------------- /Projects/Shared/WatchRestAPIModule/Project.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Shared/WatchRestAPIModule/Project.swift -------------------------------------------------------------------------------- /Projects/Shared/WatchRestAPIModule/Sources/Base/DMSAPI.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Shared/WatchRestAPIModule/Sources/Base/DMSAPI.swift -------------------------------------------------------------------------------- /Projects/Shared/WatchRestAPIModule/Sources/Base/JwtAuthorizable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Shared/WatchRestAPIModule/Sources/Base/JwtAuthorizable.swift -------------------------------------------------------------------------------- /Projects/Shared/WatchRestAPIModule/Sources/Base/Plugin/JwtPlugin.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Shared/WatchRestAPIModule/Sources/Base/Plugin/JwtPlugin.swift -------------------------------------------------------------------------------- /Projects/Shared/WatchRestAPIModule/Sources/Common/Error/DMSWatchError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Shared/WatchRestAPIModule/Sources/Common/Error/DMSWatchError.swift -------------------------------------------------------------------------------- /Projects/Shared/WatchRestAPIModule/Sources/Common/Error/GlobalDMSError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Shared/WatchRestAPIModule/Sources/Common/Error/GlobalDMSError.swift -------------------------------------------------------------------------------- /Projects/Shared/WatchRestAPIModule/Sources/Common/JwtStore/JwtStore.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Shared/WatchRestAPIModule/Sources/Common/JwtStore/JwtStore.swift -------------------------------------------------------------------------------- /Projects/Shared/WatchRestAPIModule/Sources/Common/JwtStore/JwtStoreImpl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Shared/WatchRestAPIModule/Sources/Common/JwtStore/JwtStoreImpl.swift -------------------------------------------------------------------------------- /Projects/Shared/WatchRestAPIModule/Sources/Meal/Data/API/MealAPI.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Shared/WatchRestAPIModule/Sources/Meal/Data/API/MealAPI.swift -------------------------------------------------------------------------------- /Projects/Shared/WatchRestAPIModule/Sources/Meal/Domain/Entity/MealEntity.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Shared/WatchRestAPIModule/Sources/Meal/Domain/Entity/MealEntity.swift -------------------------------------------------------------------------------- /Projects/Shared/WatchRestAPIModule/Sources/Notice/API/NoticeAPI.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Shared/WatchRestAPIModule/Sources/Notice/API/NoticeAPI.swift -------------------------------------------------------------------------------- /Projects/Shared/WatchRestAPIModule/Tests/TargetTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Projects/Shared/WatchRestAPIModule/Tests/TargetTest.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/README.md -------------------------------------------------------------------------------- /Scripts/GenerateFeature/Project.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Scripts/GenerateFeature/Project.swift -------------------------------------------------------------------------------- /Scripts/GenerateFeature/Sources/Feature.swift: -------------------------------------------------------------------------------- 1 | // This is for the feature 2 | -------------------------------------------------------------------------------- /Scripts/GenerateFeature/Tests/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Scripts/GenerateFeature/Tests/TargetTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Scripts/GenerateFeature/Tests/TargetTest.swift -------------------------------------------------------------------------------- /Scripts/GenerateModule.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Scripts/GenerateModule.swift -------------------------------------------------------------------------------- /Scripts/GenerateModuleDemoSource/Demo/Resources/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Scripts/GenerateModuleDemoSource/Demo/Resources/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Scripts/GenerateModuleDemoSource/Demo/Sources/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Scripts/GenerateModuleDemoSource/Demo/Sources/AppDelegate.swift -------------------------------------------------------------------------------- /Scripts/GoogleServiceScript.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Scripts/GoogleServiceScript.sh -------------------------------------------------------------------------------- /Scripts/NeedleRunScript.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Scripts/NeedleRunScript.sh -------------------------------------------------------------------------------- /Scripts/SwiftLintRunScript.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Scripts/SwiftLintRunScript.sh -------------------------------------------------------------------------------- /Scripts/WatchNeedleRunScript.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Scripts/WatchNeedleRunScript.sh -------------------------------------------------------------------------------- /Scripts/WidgetNeedleScript.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Scripts/WidgetNeedleScript.sh -------------------------------------------------------------------------------- /Scripts/generate_new_feature.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Scripts/generate_new_feature.py -------------------------------------------------------------------------------- /Tuist/Config.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Tuist/Config.swift -------------------------------------------------------------------------------- /Tuist/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Tuist/Package.swift -------------------------------------------------------------------------------- /Tuist/ProjectDescriptionHelpers/Action+Template.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Tuist/ProjectDescriptionHelpers/Action+Template.swift -------------------------------------------------------------------------------- /Tuist/ProjectDescriptionHelpers/CodeSign.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Tuist/ProjectDescriptionHelpers/CodeSign.swift -------------------------------------------------------------------------------- /Tuist/ProjectDescriptionHelpers/Project+Template.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Tuist/ProjectDescriptionHelpers/Project+Template.swift -------------------------------------------------------------------------------- /Tuist/ProjectDescriptionHelpers/SourceFiles+Template.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Tuist/ProjectDescriptionHelpers/SourceFiles+Template.swift -------------------------------------------------------------------------------- /Tuist/ProjectDescriptionHelpers/Workspace+Scheme.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Tuist/ProjectDescriptionHelpers/Workspace+Scheme.swift -------------------------------------------------------------------------------- /Tuist/Templates/Demo/Demo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Tuist/Templates/Demo/Demo.swift -------------------------------------------------------------------------------- /Tuist/Templates/Demo/DemoResources.stencil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Tuist/Templates/Demo/DemoResources.stencil -------------------------------------------------------------------------------- /Tuist/Templates/Demo/DemoSources.stencil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Tuist/Templates/Demo/DemoSources.stencil -------------------------------------------------------------------------------- /Tuist/Templates/Interface/Interface.stencil: -------------------------------------------------------------------------------- 1 | // This is for Tuist 2 | -------------------------------------------------------------------------------- /Tuist/Templates/Interface/Interface.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Tuist/Templates/Interface/Interface.swift -------------------------------------------------------------------------------- /Tuist/Templates/Module/Module.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Tuist/Templates/Module/Module.swift -------------------------------------------------------------------------------- /Tuist/Templates/Module/Project.stencil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Tuist/Templates/Module/Project.stencil -------------------------------------------------------------------------------- /Tuist/Templates/Module/Sources.stencil: -------------------------------------------------------------------------------- 1 | // This is for Tuist 2 | -------------------------------------------------------------------------------- /Tuist/Templates/Sources/Sources.stencil: -------------------------------------------------------------------------------- 1 | // This is for Tuist 2 | -------------------------------------------------------------------------------- /Tuist/Templates/Sources/Sources.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Tuist/Templates/Sources/Sources.swift -------------------------------------------------------------------------------- /Tuist/Templates/Testing/Testing.stencil: -------------------------------------------------------------------------------- 1 | // This is for Tuist 2 | -------------------------------------------------------------------------------- /Tuist/Templates/Testing/Testing.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Tuist/Templates/Testing/Testing.swift -------------------------------------------------------------------------------- /Tuist/Templates/Tests/Tests.stencil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Tuist/Templates/Tests/Tests.stencil -------------------------------------------------------------------------------- /Tuist/Templates/Tests/Tests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Tuist/Templates/Tests/Tests.swift -------------------------------------------------------------------------------- /Tuist/Templates/UITests/UITests.stencil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Tuist/Templates/UITests/UITests.stencil -------------------------------------------------------------------------------- /Tuist/Templates/UITests/UITests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Tuist/Templates/UITests/UITests.swift -------------------------------------------------------------------------------- /Workspace.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/Workspace.swift -------------------------------------------------------------------------------- /XCConfig/Shared.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/XCConfig/Shared.xcconfig -------------------------------------------------------------------------------- /ci_scripts/ci_post_clone.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/ci_scripts/ci_post_clone.sh -------------------------------------------------------------------------------- /graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-aliens/DMS-iOS/HEAD/graph.png --------------------------------------------------------------------------------