Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. Weโ€™ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

๐Ÿ”€ :: (#442) ์„œ๋น„์Šค ๋ ˆ์ด์–ด & ๋ฏธ์‚ฌ์šฉ ์ฝ”๋“œ, UI ์ œ๊ฑฐ #476

Merged
merged 4 commits into from
Mar 14, 2024
Original file line number Diff line number Diff line change
Expand Up @@ -31,15 +31,6 @@ public extension TargetDependency.Project.Module {
static let ErrorModule = TargetDependency.module(name: "ErrorModule")
}

public extension TargetDependency.Project.Service {
static let APIKit = TargetDependency.service(name: "APIKit")
static let Data = TargetDependency.service(name: "DataModule")
static let Domain = TargetDependency.service(name: "DomainModule")
static let DatabaseModule = TargetDependency.service(name: "DatabaseModule")
static let DataMappingModule = TargetDependency.service(name: "DataMappingModule")
static let NetworkModule = TargetDependency.service(name: "NetworkModule")
}

public extension TargetDependency.Project.UserInterfaces {
static let DesignSystem = TargetDependency.ui(name: "DesignSystem")
}
1 change: 0 additions & 1 deletion Projects/App/Project.swift
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ let targets: [Target] = [
dependencies: [
.Project.Features.RootFeature,
.Project.Module.ThirdPartyLib,
.Project.Service.Data,
.domain(target: .AppDomain),
.domain(target: .ArtistDomain),
.domain(target: .AuthDomain),
Expand Down
3 changes: 0 additions & 3 deletions Projects/App/Sources/Application/AppComponent+App.swift
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,6 @@

import AppDomain
import AppDomainInterface
import DataModule
import DomainModule
import NetworkModule

// MARK: ๋ณ€์ˆ˜๋ช… ์ฃผ์˜
// AppComponent ๋‚ด ๋ณ€์ˆ˜ == Dependency ๋‚ด ๋ณ€์ˆ˜ ์ด๋ฆ„ ๊ฐ™์•„์•ผํ•จ
Expand Down
5 changes: 4 additions & 1 deletion Projects/App/Sources/Application/AppComponent+Faq.swift
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,17 @@
import CommonFeature
import FaqDomain
import FaqDomainInterface
import NetworkModule
import SignInFeature
import StorageFeature

// MARK: ๋ณ€์ˆ˜๋ช… ์ฃผ์˜
// AppComponent ๋‚ด ๋ณ€์ˆ˜ == Dependency ๋‚ด ๋ณ€์ˆ˜ ์ด๋ฆ„ ๊ฐ™์•„์•ผํ•จ

public extension AppComponent {
var questionComponent: QuestionComponent {
QuestionComponent(parent: self)
}

var faqComponent: FaqComponent {
FaqComponent(parent: self)
}
Expand Down
31 changes: 0 additions & 31 deletions Projects/App/Sources/Application/AppComponent+Play.swift

This file was deleted.

71 changes: 0 additions & 71 deletions Projects/App/Sources/Application/AppComponent+Suggest.swift

This file was deleted.

Loading
Loading