chore: initial domain and infrastructure layers

Signed-off-by: Alan Brault <alan.brault@visus.io>
This commit is contained in:
2026-08-05 08:07:41 -04:00
parent 89b52e2286
commit 5893b9f99e
21 changed files with 774 additions and 5 deletions
@@ -5,6 +5,9 @@ import PackageDescription
let package = Package(
name: "TempestasInfrastructure",
platforms: [
.macOS(.v14)
],
products: [
// Products define the executables and libraries a package produces, making them visible to other packages.
.library(
@@ -19,7 +22,10 @@ let package = Package(
// Targets are the basic building blocks of a package, defining a module or a test suite.
// Targets can depend on other targets in this package and products from dependencies.
.target(
name: "TempestasInfrastructure"
name: "TempestasInfrastructure",
dependencies: [
"TempestasDomain"
]
),
.testTarget(
name: "TempestasInfrastructureTests",