// swift-tools-version: 5.9 import PackageDescription let package = Package( name: "FchatyApp", platforms: [.macOS(.v14)], targets: [ .executableTarget( name: "FchatyApp", path: "Sources/FchatyApp" ), .testTarget( name: "FchatyAppTests", dependencies: ["FchatyApp"], path: "Tests/FchatyAppTests" ) ] )