Skip to content

Commit

Permalink
first
Browse files Browse the repository at this point in the history
  • Loading branch information
jurajantas committed Nov 8, 2023
0 parents commit e2d68dd
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
.DS_Store
/.build
/Packages
/*.xcodeproj
xcuserdata/
DerivedData/
.swiftpm/config/registries.json
.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata
.netrc
24 changes: 24 additions & 0 deletions Package.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
// swift-tools-version: 5.8
// The swift-tools-version declares the minimum version of Swift required to build this package.

import PackageDescription

let package = Package(
name: "MySpinServerSDK",
platforms: [
.iOS(.v11)
],
products: [
.library(
name: "MySpinServerSDK",
targets: ["MySpinServerSDK"]),
],
dependencies: [
],
targets: [
.binaryTarget(
name: "MySpinServerSDK",
url: "todo",
checksum: "todo")
]
)

0 comments on commit e2d68dd

Please sign in to comment.