this repo has no description
at ai_oauth 29 lines 578 B view raw
1// swift-tools-version: 6.2 2 3import PackageDescription 4 5let package = Package( 6 name: "CoreATProtocol", 7 platforms: [ 8 .iOS(.v26), 9 .watchOS(.v26), 10 .tvOS(.v26), 11 .macOS(.v26), 12 .macCatalyst(.v26), 13 ], 14 products: [ 15 .library( 16 name: "CoreATProtocol", 17 targets: ["CoreATProtocol"] 18 ), 19 ], 20 targets: [ 21 .target( 22 name: "CoreATProtocol" 23 ), 24 .testTarget( 25 name: "CoreATProtocolTests", 26 dependencies: ["CoreATProtocol"] 27 ), 28 ] 29)