Skip to content

Commit

Permalink
feat(agent): add agent module
Browse files Browse the repository at this point in the history
  • Loading branch information
goncalo-frade-iohk committed Nov 25, 2022
1 parent c030400 commit df809c0
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 7 deletions.
14 changes: 7 additions & 7 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@ let package = Package(
targets: ["Builders"]
),
.library(
name: "Experiences",
targets: ["Experiences"]
name: "PrismAgent",
targets: ["PrismAgent"]
)
],
dependencies: [
Expand Down Expand Up @@ -129,14 +129,14 @@ let package = Package(
path: "Builders/Sources"
),
.target(
name: "Experiences",
name: "PrismAgent",
dependencies: ["Domain", "Builders", "Core"],
path: "Experiences/Sources"
path: "PrismAgent/Sources"
),
.testTarget(
name: "ExperiencesTests",
dependencies: ["Experiences"],
path: "Experiences/Tests"
name: "PrismAgent",
dependencies: ["PrismAgent"],
path: "PrismAgent/Tests"
),
// Internal core components (ex: logging) not public distributed
.target(
Expand Down
File renamed without changes.
1 change: 1 addition & 0 deletions PrismAgent/Tests/PrismAgentTests.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
// This file is just here as a foolproof/template since for Swift Packages a module source always have to have at least one Swift file

0 comments on commit df809c0

Please sign in to comment.