mirror of
https://github.com/swift-server/swift-aws-lambda-runtime.git
synced 2026-06-02 07:27:33 +00:00
Co-authored-by: Fabian Fett <fabianfett@apple.com> Co-authored-by: Sébastien Stormacq <sebastien.stormacq@gmail.com> Co-authored-by: Mahdi Bahrami <github@mahdibm.com>
16 lines
367 B
Swift
16 lines
367 B
Swift
// swift-tools-version:5.5
|
|
// The swift-tools-version declares the minimum version of Swift required to build this package.
|
|
|
|
import PackageDescription
|
|
|
|
let package = Package(
|
|
name: "Shared",
|
|
products: [
|
|
.library(name: "Shared", targets: ["Shared"])
|
|
],
|
|
dependencies: [],
|
|
targets: [
|
|
.target(name: "Shared", dependencies: [])
|
|
]
|
|
)
|