Implement persistence layer

This commit is contained in:
Brendan Szymanski 2026-06-10 23:57:58 -04:00
parent 76efb1af72
commit 2411a220fe
12 changed files with 303 additions and 42 deletions

View file

@ -10,6 +10,7 @@ let package = Package(
.package(url: "https://github.com/apple/swift-openapi-generator", from: "1.0.0"),
.package(url: "https://github.com/apple/swift-openapi-runtime", from: "1.0.0"),
.package(url: "https://github.com/apple/swift-openapi-urlsession", from: "1.0.0"),
.package(url: "https://github.com/stephencelis/SQLite.swift", from: "0.16.0"),
],
targets: [
.target(
@ -17,6 +18,7 @@ let package = Package(
dependencies: [
.product(name: "OpenAPIRuntime", package: "swift-openapi-runtime"),
.product(name: "OpenAPIURLSession", package: "swift-openapi-urlsession"),
.product(name: "SQLite", package: "SQLite.swift"),
],
plugins: [
.plugin(name: "OpenAPIGenerator", package: "swift-openapi-generator")