GitXplorerGitXplorer
e

b2swift

public
1 stars
1 forks
0 issues

Commits

List of commits on branch master.
Unverified
a4d9129dac64c93b1688f17b9c0e8a01bd41d776

Improved `b2_authorize_account`

eezfe committed 5 years ago
Unverified
94251cc1bbd1b42988539bbe60b80e5f11effc34

Updated packages

eezfe committed 5 years ago
Unverified
dabe0b8ab98fa682e191f5d1c43849e127b607cf

Resolving Import Errors

eezfe committed 5 years ago
Unverified
bc9828eef5f5261873683b4472ab62e1be48e6dc

Ignore swiftpm

eezfe committed 5 years ago
Unverified
ec3b6feca6db5dda0ecfc6faeb36ab35a3805256

Merge remote-tracking branch 'refs/remotes/origin/master'

eezfe committed 5 years ago
Unverified
966497032d0ca7cdd499cf843764261d63406966

Updated to use SwiftNIO and Swift 5.2

eezfe committed 5 years ago

README

The README file for this repository.

b2swift

Warning: This project is not tested and may have bugs in it. I do use this project, however I've only tested the parts that I use. If you run into an issue or something is missing, open an Issue.

To use this project in your repository, add the following line to your dependencies:

.package(url: "https://github.com/ezfe/b2swift", .branch("master"))

Also remember to add b2Swift to the target dependencies.

Example Package.swift file:

import PackageDescription

let package = Package(
    name: "ProjectName",
    products: [
        .library(
            name: "ProjectName",
            targets: ["ProjectName"]),
    ],
    dependencies: [
        .package(url: "https://github.com/ezfe/b2swift", .branch("master"))
    ],
    targets: [
        .target(
            name: "ProjectName",
            dependencies: ["b2swift"]),
        .testTarget(
            name: "ProjectNameTests",
            dependencies: ["ProjectName"]),
    ]
)