A WIP swift OAuth Library that one day I'll get back to

Initial Commit

+33
+8
.gitignore
··· 1 + .DS_Store 2 + /.build 3 + /Packages 4 + xcuserdata/ 5 + DerivedData/ 6 + .swiftpm/configuration/registries.json 7 + .swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata 8 + .netrc
+23
Package.swift
··· 1 + // swift-tools-version: 6.2 2 + // The swift-tools-version declares the minimum version of Swift required to build this package. 3 + 4 + import PackageDescription 5 + 6 + let package = Package( 7 + name: "Gulliver", 8 + products: [ 9 + // Products define the executables and libraries a package produces, making them visible to other packages. 10 + .library( 11 + name: "Gulliver", 12 + targets: ["Gulliver"] 13 + ), 14 + ], 15 + targets: [ 16 + // Targets are the basic building blocks of a package, defining a module or a test suite. 17 + // Targets can depend on other targets in this package and products from dependencies. 18 + .target( 19 + name: "Gulliver" 20 + ), 21 + 22 + ] 23 + )
+2
Sources/Gulliver/Gulliver.swift
··· 1 + // The Swift Programming Language 2 + // https://docs.swift.org/swift-book