Skip to content

Commit

Permalink
feature: networkTracking 모듈 Core로 이동
Browse files Browse the repository at this point in the history
  • Loading branch information
Jihyun247 committed Aug 21, 2024
1 parent 92e7f71 commit 21b19e5
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,5 @@ public enum Core: String, Modulable {
case DatabaseClient
case UserDefaultsClient
case FeedbackGeneratorClient
case NetworkTracking
}
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,4 @@ public enum Domain: String, Modulable {
case UserService
case CatService
case PomodoroService
case NetworkTracking
}
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
import ProjectDescription
import ProjectDescriptionHelpers

@_spi(Domain)
@_spi(Core)
@_spi(Shared)
import DependencyPlugin

let project: Project = .makeTMABasedProject(
module: Domain.NetworkTracking,
module: Core.NetworkTracking,
scripts: [],
targets: [
.sources,
.interface
],
dependencies: [
.interface: [
.dependency(rootModule: Core.self)
.dependency(rootModule: Shared.self)
]
]
)

0 comments on commit 21b19e5

Please sign in to comment.