Skip to content

Commit

Permalink
πŸ› :: [#472] λˆ„λ½λœ λ””νŽœλ˜μ‹œ μΆ”κ°€
Browse files Browse the repository at this point in the history
  • Loading branch information
KangTaeHoon committed Mar 11, 2024
1 parent a6af7e4 commit 92334d8
Show file tree
Hide file tree
Showing 12 changed files with 60 additions and 13 deletions.
11 changes: 8 additions & 3 deletions Projects/Domains/AppDomain/Project.swift
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,17 @@ import ProjectDescriptionHelpers
let project = Project.module(
name: ModulePaths.Domain.AppDomain.rawValue,
targets: [
.interface(module: .domain(.AppDomain)),
.interface(
module: .domain(.AppDomain),
dependencies: [
.domain(target: .BaseDomain, type: .interface)
]
),
.implements(
module: .domain(.AppDomain),
dependencies: [
TargetDependency.domain(target: .BaseDomain),
TargetDependency.domain(target: .AppDomain, type: .interface)
.domain(target: .BaseDomain),
.domain(target: .AppDomain, type: .interface)
]
),
.tests(
Expand Down
7 changes: 6 additions & 1 deletion Projects/Domains/ArtistDomain/Project.swift
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,12 @@ import ProjectDescriptionHelpers
let project = Project.module(
name: ModulePaths.Domain.ArtistDomain.rawValue,
targets: [
.interface(module: .domain(.ArtistDomain)),
.interface(
module: .domain(.ArtistDomain),
dependencies: [
.domain(target: .BaseDomain, type: .interface)
]
),
.implements(
module: .domain(.ArtistDomain),
dependencies: [
Expand Down
7 changes: 6 additions & 1 deletion Projects/Domains/AuthDomain/Project.swift
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,12 @@ import ProjectDescriptionHelpers
let project = Project.module(
name: ModulePaths.Domain.AuthDomain.rawValue,
targets: [
.interface(module: .domain(.AuthDomain)),
.interface(
module: .domain(.AuthDomain),
dependencies: [
.domain(target: .BaseDomain, type: .interface)
]
),
.implements(
module: .domain(.AuthDomain),
dependencies: [
Expand Down
9 changes: 7 additions & 2 deletions Projects/Domains/BaseDomain/Project.swift
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,19 @@ import ProjectDescriptionHelpers
let project = Project.module(
name: ModulePaths.Domain.BaseDomain.rawValue,
targets: [
.interface(module: .domain(.BaseDomain)),
.interface(
module: .domain(.BaseDomain),
dependencies: [
.Project.Module.ThirdPartyLib
]
),
.implements(
module: .domain(.BaseDomain),
dependencies: [
.Project.Module.Utility,
.Project.Module.ErrorModule,
.Project.Module.KeychainModule,
TargetDependency.domain(target: .BaseDomain, type: .interface)
.domain(target: .BaseDomain, type: .interface)
]
),
.tests(
Expand Down
7 changes: 6 additions & 1 deletion Projects/Domains/ChartDomain/Project.swift
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,12 @@ import ProjectDescriptionHelpers
let project = Project.module(
name: ModulePaths.Domain.ChartDomain.rawValue,
targets: [
.interface(module: .domain(.ChartDomain)),
.interface(
module: .domain(.ChartDomain),
dependencies: [
.domain(target: .BaseDomain, type: .interface)
]
),
.implements(
module: .domain(.ChartDomain),
dependencies: [
Expand Down
7 changes: 6 additions & 1 deletion Projects/Domains/FaqDomain/Project.swift
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,12 @@ import ProjectDescriptionHelpers
let project = Project.module(
name: ModulePaths.Domain.FaqDomain.rawValue,
targets: [
.interface(module: .domain(.FaqDomain)),
.interface(
module: .domain(.FaqDomain),
dependencies: [
.domain(target: .BaseDomain, type: .interface)
]
),
.implements(
module: .domain(.FaqDomain),
dependencies: [
Expand Down
7 changes: 6 additions & 1 deletion Projects/Domains/LikeDomain/Project.swift
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,12 @@ import ProjectDescriptionHelpers
let project = Project.module(
name: ModulePaths.Domain.LikeDomain.rawValue,
targets: [
.interface(module: .domain(.LikeDomain)),
.interface(
module: .domain(.LikeDomain),
dependencies: [
.domain(target: .BaseDomain, type: .interface)
]
),
.implements(
module: .domain(.LikeDomain),
dependencies: [
Expand Down
7 changes: 6 additions & 1 deletion Projects/Domains/NoticeDomain/Project.swift
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,12 @@ import ProjectDescriptionHelpers
let project = Project.module(
name: ModulePaths.Domain.NoticeDomain.rawValue,
targets: [
.interface(module: .domain(.NoticeDomain)),
.interface(
module: .domain(.NoticeDomain),
dependencies: [
.domain(target: .BaseDomain, type: .interface)
]
),
.implements(
module: .domain(.NoticeDomain),
dependencies: [
Expand Down
3 changes: 2 additions & 1 deletion Projects/Domains/PlayListDomain/Project.swift
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@ let project = Project.module(
.interface(
module: .domain(.PlayListDomain),
dependencies: [
.domain(target: .BaseDomain, type: .interface)
.domain(target: .BaseDomain, type: .interface),
.domain(target: .SongsDomain, type: .interface)
]
),
.implements(
Expand Down
7 changes: 6 additions & 1 deletion Projects/Domains/SongsDomain/Project.swift
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,12 @@ import ProjectDescriptionHelpers
let project = Project.module(
name: ModulePaths.Domain.SongsDomain.rawValue,
targets: [
.interface(module: .domain(.SongsDomain)),
.interface(
module: .domain(.SongsDomain),
dependencies: [
.domain(target: .BaseDomain, type: .interface)
]
),
.implements(
module: .domain(.SongsDomain),
dependencies: [
Expand Down
1 change: 1 addition & 0 deletions Projects/Domains/UserDomain/Project.swift
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ let project = Project.module(
.interface(
module: .domain(.UserDomain),
dependencies: [
.domain(target: .BaseDomain, type: .interface),
.domain(target: .SongsDomain, type: .interface)
]
),
Expand Down
Binary file modified graph.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 92334d8

Please sign in to comment.