feat: Adds file client.

This commit is contained in:
2026-01-27 13:50:42 -05:00
parent 6064b5267a
commit 273da46db2
4 changed files with 49 additions and 10 deletions

View File

@@ -9,6 +9,7 @@ let package = Package(
.library(name: "ApiController", targets: ["ApiController"]),
.library(name: "AuthClient", targets: ["AuthClient"]),
.library(name: "DatabaseClient", targets: ["DatabaseClient"]),
.library(name: "FileClient", targets: ["FileClient"]),
.library(name: "PdfClient", targets: ["PdfClient"]),
.library(name: "ProjectClient", targets: ["ProjectClient"]),
.library(name: "ManualDCore", targets: ["ManualDCore"]),
@@ -76,6 +77,13 @@ let package = Package(
.product(name: "Vapor", package: "vapor"),
]
),
.target(
name: "FileClient",
dependencies: [
.product(name: "Dependencies", package: "swift-dependencies"),
.product(name: "DependenciesMacros", package: "swift-dependencies"),
]
),
.target(
name: "PdfClient",
dependencies: [