Skip to content

Commit 3a0fc66

Browse files
committed
first commit
1 parent 98e1a38 commit 3a0fc66

File tree

5 files changed

+63
-0
lines changed

5 files changed

+63
-0
lines changed

.gitignore

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# Mac
2+
.DS_Store
3+
4+
# Xcode
5+
xcuserdata/
6+
*.xcuserstate
7+
DerivedData/
8+
9+
# Swift Package Manager
10+
/*.xcodeproj
11+
/.build
12+
/.swiftpm
13+
14+
# Test
15+
TestResults/

Package.swift

+34
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
// swift-tools-version: 5.10
2+
3+
import PackageDescription
4+
5+
let swiftSettings: [SwiftSetting] = [
6+
.enableExperimentalFeature("StrictConcurrency"),
7+
.enableUpcomingFeature("ExistentialAny"),
8+
.enableUpcomingFeature("GlobalConcurrency"),
9+
]
10+
11+
let package = Package(
12+
name: "KintoneAPI",
13+
platforms: [
14+
.iOS(.v17),
15+
.macOS(.v14),
16+
],
17+
products: [
18+
.library(
19+
name: "KintoneAPI",
20+
targets: ["KintoneAPI"]
21+
),
22+
],
23+
targets: [
24+
.target(
25+
name: "KintoneAPI",
26+
swiftSettings: swiftSettings
27+
),
28+
.testTarget(
29+
name: "KintoneAPITests",
30+
dependencies: ["KintoneAPI"],
31+
swiftSettings: swiftSettings
32+
),
33+
]
34+
)

README.md

Whitespace-only changes.

Sources/KintoneAPI/KintoneAPI.swift

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
// The Swift Programming Language
2+
// https://docs.swift.org/swift-book
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
import XCTest
2+
@testable import KintoneAPI
3+
4+
final class KintoneAPITests: XCTestCase {
5+
func testExample() throws {
6+
// XCTest Documentation
7+
// https://developer.apple.com/documentation/xctest
8+
9+
// Defining Test Cases and Test Methods
10+
// https://developer.apple.com/documentation/xctest/defining_test_cases_and_test_methods
11+
}
12+
}

0 commit comments

Comments
 (0)