Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
onmyway133 committed Feb 14, 2022
0 parents commit fe7a5ae
Show file tree
Hide file tree
Showing 8 changed files with 100,743 additions and 0 deletions.
36 changes: 36 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
# OS X
.DS_Store
.AppleDouble
.LSOverride
Icon
._*
.Spotlight-V100
.Trashes

# Xcode
#
build/
*.pbxuser
!default.pbxuser
*.mode1v3
!default.mode1v3
*.mode2v3
!default.mode2v3
*.perspectivev3
!default.perspectivev3
xcuserdata
*.xccheckout
*.moved-aside
DerivedData
*.hmap
*.ipa
*.xcuserstate

# CocoaPods
Pods

# Carthage
Carthage

# SPM
.build/
7 changes: 7 additions & 0 deletions .swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

34 changes: 34 additions & 0 deletions Package.resolved
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
{
"object": {
"pins": [
{
"package": "Get",
"repositoryURL": "https://github.com/kean/Get",
"state": {
"branch": null,
"revision": "068b400e3850f0953ec25d11d3a3893c4538ffd5",
"version": "0.5.0"
}
},
{
"package": "NaiveDate",
"repositoryURL": "https://github.com/kean/NaiveDate",
"state": {
"branch": null,
"revision": "08fad5d02e9117f6cea96096c5951e445aa710b1",
"version": "1.0.0"
}
},
{
"package": "URLQueryEncoder",
"repositoryURL": "https://github.com/kean/URLQueryEncoder",
"state": {
"branch": "0.2.0",
"revision": "4cc975d4d075d0e62699a796a08284e217d4ee93",
"version": null
}
}
]
},
"version": 1
}
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.5
// The swift-tools-version declares the minimum version of Swift required to build this package.

import PackageDescription

let package = Package(
name: "AppStoreConnect",
platforms: [.iOS(.v13), .macCatalyst(.v13), .macOS(.v10_15), .watchOS(.v6), .tvOS(.v13)],
products: [
.library(name: "AppStoreConnect", targets: ["AppStoreConnect"]),
],
dependencies: [
.package(url: "https://github.com/kean/Get", from: "0.3.1"),
.package(url: "https://github.com/kean/NaiveDate", from: "1.0.0"),
.package(url: "https://github.com/kean/URLQueryEncoder", branch: "0.2.0")
],
targets: [
.target(name: "AppStoreConnect", dependencies: [
.product(name: "Get", package: "Get"),
.product(name: "NaiveDate", package: "NaiveDate"),
.product(name: "URLQueryEncoder", package: "URLQueryEncoder")
], path: "Sources")
]
)
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# App Store Connect

Interact with [App Store Connect APIs](https://developer.apple.com/documentation/appstoreconnectapi/)

## Credit

- Code generated by https://github.com/kean/CreateAPI
Loading

0 comments on commit fe7a5ae

Please sign in to comment.